db.test.js 566 B

1234567891011121314151617
  1. var database = require("./db.js");
  2. database.init();
  3. // database.put('namezzzzzz', {asd: "gdfhdfh"}, function (err) {
  4. // if (err) return console.log('Ooops!', err) // some kind of I/O error
  5. // // 3) Fetch by key
  6. // database.get('namezzzzzz', function (err, value) {
  7. // if (err) return console.log('Ooops!', err) // likely the key was not found
  8. // // Ta da!
  9. // console.log('name is=' + JSON.stringify(value))
  10. // })
  11. // })
  12. database.put('namezzzzzz', {asd: "gdfhdfh"}).then(function(value){
  13. return database.get('namezzzzzz');
  14. }).then(console.log);