3.1.0 • Published 4 years ago

@tresmo/mongodb-copy v3.1.0

Weekly downloads
3
License
MIT
Repository
-
Last release
4 years ago

mongodb-copy

copy a source database into a emptied destination database.

##Installation npm install --save @tresmo/mongodb-copy

##Usage as command This package provides a mongodb-copy command as bin. You must specify with -s with the source database url and with -d the destination database url.

###Example Define a script in package.json to copy a database if environment variable IS_REVIEW_APP is set to true

"copydb": "if [ \"$IS_REVIEW_APP\" = \"true\" ]; then mongodb-copy -s $MONGO_EXPORT_SOURCE_URL -d $MONGODB_URI; fi"

##Usage as function This package provides a function with the following parameter:

  • The source database URL (required)
  • The destination database url. (required)
  • The string for one included collection name. (optional)
  • The string of one or array of strings for excluded collection names. (optional)
  • Callback if given returns (err), otherwise returns a promise.

###Examples

var mongodbCopy = require('@tresmo/mongodb-copy');

####Examples as Promise

  • copy one database into backup: mongodbCopy( 'mongodb://localhost/one', 'mongodb://localhost/backup').then()...
  • copy the collection products from database one into backup: mongodbCopy( 'mongodb://localhost/one', 'mongodb://localhost/backup', 'products').then()...
  • copy all collections excluding products from database one into backup: mongodbCopy( 'mongodb://localhost/one', 'mongodb://localhost/backup', null, 'products').then()...
  • copy all collections excluding products and customers from database one into backup: mongodbCopy( 'mongodb://localhost/one', 'mongodb://localhost/backup', null, ['products','customers']).then()...

####Examples with callback

  • copy one database into backup: mongodbCopy( 'mongodb://localhost/one', 'mongodb://localhost/backup', functions(err) {...
  • copy the collection products from database one into backup: mongodbCopy( 'mongodb://localhost/one', 'mongodb://localhost/backup', 'products', functions(err) {...
  • copy all collections excluding products from database one into backup: mongodbCopy( 'mongodb://localhost/one', 'mongodb://localhost/backup', null, 'products', functions(err) {...
  • copy all collections excluding products and customers from database one into backup: mongodbCopy( 'mongodb://localhost/one', 'mongodb://localhost/backup', null, ['products','customers'], functions(err) {...

t

3.1.0

4 years ago

3.0.13

4 years ago

3.0.12

4 years ago

3.0.11

4 years ago

3.0.10

5 years ago

3.0.9

5 years ago

3.0.8

5 years ago

3.0.7

5 years ago

3.0.6

5 years ago

3.0.5

5 years ago

3.0.4

5 years ago

3.0.3

5 years ago

3.0.2

5 years ago

3.0.1

5 years ago

3.0.0

5 years ago

2.2.1

6 years ago

2.2.0

6 years ago

2.0.1

6 years ago

1.3.2

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.0.5

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago