0.4.4 • Published 6 years ago

mongoose-seedr v0.4.4

Weekly downloads
12
License
ISC
Repository
github
Last release
6 years ago

mongoose-seedr

mongoose-seedr lets you seed your database with fake data. In case when you need to insert data into a database that is linked to another data you can easily set references and it will automatically connect collections and populate database. This way, we don't have to manually link them together.

Installation

$ npm install mongoose-seedr --save-dev

Usage example

// seedDatabase.js
const seedr = require('mongoose-seedr');
const path = require('path');

seedr.seed({
    databaseURL: 'mongodb://localhost:27017/seed-test',
    seed: [
        {
            documents: path.join(__dirname, 'users.js'),
            collection: 'users'
        },
        {
            documents: path.join(__dirname, 'pets.js'),
            collection: 'pets'
        }
    ]
});

Run script and voila, you seeded your database.

$ node seedDatabase.js

Fake data example

users.js and pets.js are JS files with fake data that will be inserted into database.

users.js

module.exports = [
    {
        firstName: 'Terrence',
        lastName: 'Hudnall',
        pets: [
            'ref:pets._id',
            'ref:pets._id'
        ]
    },
    {
        firstName: 'Jordan',
        lastName: 'Kelly',
        pets: [
            {
                size: 'ref:pets.size',
                name: 'ref:pets.name'
            }
        ]
    }
]

pets.js

module.exports = [
    {
        name: 'Nacho',
        size: 'small'
    },
    {
        name: 'Pepper',
        size: 'big'
    }
]

As we can see in the previous example, users.js file holds the list of users. An user have pets array that have references to documents in pets collection. In this case, we're using ref: followed by collection name and property that we want to get from document in another collection. mongoose-seedr will pick random document from that collection and pull out property that you've specified.

Configuration

Configuration object that you pass into the seed method:

Prop nameDescriptionTypeDefaultRequired
databaseURLurl to databaseString-true
seedarray of seed objectsArray-true
seed[].documentsFile path to the JS file that contains fake documentsString-true
seed[].collectionName of a collection that will be inserted into a databaseString-true
dropDatabaseDefines if script should drop a database before inserting a fake dataBooleantruefalse
referenceKeyPrefix key which you're using to link documents between collectionsString"ref:"false

Contributors

0.4.4

6 years ago

0.4.3

6 years ago

0.4.2

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago