npm install mongod-mockMock mongod



npm install mongod-mock
In memory:
``js
var db = require('mongod-mock')('mock:memory');
// use db
`
With a file (only written every 500ms at most, and won't work with multiple processes):
`js
var db = require('mongod-mock')('mock:my-file.json');
// use db
``
Lots of operations are not supported, but this should work for simple demos
MIT