0.0.1 • Published 10 years ago

mongo-down v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

#Mongo-Down

A replacement for LevelDOWN that works using a MongoDB Database. Can be used as a back-end for LevelUP rather than an actual LevelDB store.

##See Also

##Sample Usage

var mongoURL = "<mongo db url>";
var collectionName = "<name of collection>||'collection'";
var levelup = require('levelup');
var db = levelup("what/ev/er",
    {
        db: require('mongodown')(mongoURL, collectionName)
    }
)
db.put('foo', 'bar', function (err) {
  if (err) throw err
  db.get('foo', function (err, value) {
    if (err) throw err
    console.log('Got foo =', value)
  })
})