1.0.1 • Published 6 years ago

tingodown v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

tingoDOWN

A drop-in replacement for LevelDOWN that runs on TingoDB. Can be used as a back-end for LevelUP rather than an actual LevelDB store.

Installation

npm install tingodown

Example

var levelup = require('levelup')
var tingodown = require('tingodown')

// TingoDB Collection name defaults to 'tingodown'
var db = levelup(tingodown('tingodb:///home/my-database'))

// OR pass custom TingoDB collection name
db = levelup(tingodown('tingodb:///home/my-database'), { collection:'People_C' })

db.put('name', 'Yuri Irsenovich Kim')
db.put('dob', '16 February 1941')
db.put('spouse', 'Kim Young-sook')
db.put('occupation', 'Clown')

db.readStream()
  .on('data', console.log)
  .on('close', function () { console.log('Show\'s over folks!') })

Limitations

tingoDOWN does not support iterator snapshots

License

MIT