mongodb-fixtures

0.0.5 • Public • Published

mongodb-fixtures

Easy fixtures for mongodb:

  1. Put a fixtures folder in your project

  2. Put JSON files in the fixtures folder, with the filenames being the collection-names (plural)

  3. Create code similar to:

    var fixtures = require('mongodb-fixtures');

    var Db = require('mongodb').Db, Connection = require('mongodb').Connection, Server = require('mongodb').Server;

    var db = new Db('wines', new Server("localhost", Connection.DEFAULT_PORT, {}));

    fixtures.load(); fixtures.save(db, function() { db.close(); console.dir(fixtures); });

Dependencies (4)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i mongodb-fixtures

    Weekly Downloads

    5

    Version

    0.0.5

    License

    none

    Last publish

    Collaborators

    • tdegrunt