mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00
18 lines
342 B
HTML
18 lines
342 B
HTML
<h1>RindexedDB</h1>
|
|
|
|
<script src="../../gun.js"></script>
|
|
<script src="../../lib/radix.js"></script>
|
|
<script src="../../lib/radisk.js"></script>
|
|
<script src="../../lib/store.js"></script>
|
|
<script src="../../lib/rindexed.js"></script>
|
|
|
|
<script>
|
|
localStorage.clear();
|
|
|
|
var opt = {};
|
|
|
|
opt.store = RindexedDB(opt);
|
|
|
|
var gun = Gun(opt);
|
|
</script>
|