1.0.1 • Published 8 years ago

mongodb-bin-wrapper v1.0.1

Weekly downloads
2
License
AGPL-3.0
Repository
github
Last release
8 years ago

mongodb-bin-wrapper

wrapper for linux, mac, and windows mongodb binaries installable with npm

install

npm install mongodb-bin-wrapper --save

usage

const mongodb = require('mongodb-bin-wrapper');
const mongod = mongodb('mongod', ['--port', '7000']);

mongod.stdout.pipe(process.stdout);
mongod.stderr.pipe(process.stderr);

mongod.on('exit', (code) => {
  console.log('EXITED WITH CODE', code);
});