Skip to content

Instantly share code, notes, and snippets.

@jeffposnick
Created December 9, 2015 21:59
Show Gist options
  • Save jeffposnick/a81a2dc77d9418665069 to your computer and use it in GitHub Desktop.
Save jeffposnick/a81a2dc77d9418665069 to your computer and use it in GitHub Desktop.
IDB test
<html>
<body>
<script src="https://cdn.rawgit.com/jakearchibald/indexeddb-promised/dd48c031e7f93d6695e89bb504cbe586dfacc073/lib/idb.js"></script>
<script>
idb.open('test', 1).then(db => {
db.transaction('key-val').objectStore('key-val').put('hello', 'world');
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment