Last active
January 8, 2021 18:24
-
-
Save ashwinkumar2438/a1e4567d9559df8e2bba7d375be59163 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SimpleStore from "simplestore-indexeddb"; | |
new SimpleStore("mystore").addStores([ | |
{ name: "books", | |
indices: ["book_name"] | |
}, | |
{ | |
name:"users" | |
} | |
]).then(res=>{ let mystore=res.simplestore; }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment