This package has been deprecated

Author message:

this package has been deprecated and is unsupported

gulp-mongo-populator

1.0.0 • Public • Published

gulp-mongo-populator Build Status

Import JSONs into MongoDB trough mongoimport via Gulp

Install

$ npm install --save-dev gulp-mongo-populator

Usage

var gulp = require('gulp');
var mongoPopulator = require('gulp-mongo-populator');
 
gulp.task('populate', function () {
  return gulp.src('db/initial-state/*.json')
    .pipe(mongoPopulator('databaseName'));
});

API

mongoPopulator(options)

options

Two options are given, one of both is required.

1. Database Name

Type: String

The name of the destination database.

2. monogimport-Options as a Object

Type: Object

Any provided options are passed to mongoimport.

The boolean value true can be used if a option doesn't accept a value.

An example for this is --ssl which can be translated to {ssl: true}.

For a list of options take a look at the documentation of mongoimport.

Example:
gulp.task('populate', function () {
  return gulp.src('db/initial-state/*.csv')
    .pipe(mongoPopulator({
      ipv6: true,
      db: 'myfancydatabase',
      type: 'csv',
      ignoreBlanks: true
    }));

License

The MIT License (MIT)

Copyright (c) Thomas Lercher gulp-mongo-populator@tlercher.de

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i gulp-mongo-populator

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • tlercher