Skip to content
This repository has been archived by the owner on Nov 26, 2020. It is now read-only.

nickpoorman/mongodb-collection-dump

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#mongodb-collection-dump

dumps a mongodb collection to a stream.

Specify a mongoDB connect URI, the collection, and a path to the target file.

build status

example

Dump a collection to stream:

var d = dump('mongodb://127.0.0.1/test_db', 'testcollection').pipe(through(write));

function write(row) {
  console.log(row);
}

d.on('end', function() {
  console.log("done");
});

methods

var dump = require('mongodb-collection-dump')

var d = dump(connectURI, collection)

dump connects to the mongodb database at connectURI and begins streaming the entire collection.

The returned object s is a Stream.

events

d.on(Stream events)

Any event Stream normally emits.

d.on('connectError', function (err) {})

Emitted when there is a error connecting to the database.

install

With npm do:

npm install mongodb-collection-dump

license

MIT

About

Dumps a mongodb collection to a stream.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published