Skip to content

Instantly share code, notes, and snippets.

@genecyber
Created April 15, 2015 17:18
Show Gist options
  • Save genecyber/0911abc453f8d9fc4562 to your computer and use it in GitHub Desktop.
Save genecyber/0911abc453f8d9fc4562 to your computer and use it in GitHub Desktop.
dump leveldb
var levelup = require('levelup')
var db = levelup('./')
db.createReadStream()
.on('data', console.log)
.on('close', function () {
db.close()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment