Skip to content

Instantly share code, notes, and snippets.

@ralphtheninja
Last active May 6, 2018 11:39
Show Gist options
  • Save ralphtheninja/95b17af5d990a5b658f043d5406b95b1 to your computer and use it in GitHub Desktop.
Save ralphtheninja/95b17af5d990a5b658f043d5406b95b1 to your computer and use it in GitHub Desktop.
const level = require('level-browserify')
const db = level('./foo')
db.put('key', 'value', err => {
db.get('key', (err, value) => {
console.log('value=', value)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment