JSFiddle - React, Tailwind, and code Playground
by Nico
HTML
<script src="https://rawgit.com/localForage/localForage/master/dist/localforage.js"></script>
Open the console to see the output of this example.
JavaScript
localforage.setItem('somekey', 'some value', function(err, value) {
// Do other things once the value has been saved.
console.log(value);
localforage.getItem('somekey', function(err,value) {
console.log('we just read ' + value);
});
});