MongoDB client layer with middleware support.
npm install mont
const Mont = require('mont')
const db = Mont('localhost/app')
db.get('colors')
.insert({ id: 'blue', body: { hex: '#00ff00' } })
.then(console.log)
// { id: 'blue',
// type: 'colors',
// body: { hex: '#00ff00' } }
npm test
Consult Monk API docs and Koa middleware guide
MIT