Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Local Forage

localforage.setItem('key', 'value', function (err) {
  // if err is non-null, we got an error
  localforage.getItem('key', function (err, value) {
    // if err is non-null, we got an error. otherwise, value is the value
  });
});
Source by www.npmjs.com #
 
PREVIOUS NEXT
Tagged: #Local #Forage
ADD COMMENT
Topic
Name
9+4 =