Skip to content

Trippnology/mongo-utils

 
 

Repository files navigation

mongo-utils Build Status

mongo-utils provides a friendly interface to MongoDB's mongodump and mongorestore commands, as well as some utility functions.

Synchronous functions

utils.parseConnectionString(connectionString); // mongo connection options object
utils.makeRestoreCommand(connectionString, sourceDir); // mongorestore ...
utils.makeDumpCommand(connectionString, targetDir); // mongodump ...

Asynchronous functions

These functions simply wrap child_process.exec in a convenient interface. There is absolutely no validation happening. Thus, the absence of an error (as err argument) does not mean the dump or restore succeeded.

I advise to inspect stdout and stderr yourself if you use this module for any important dumps or restores, or verify the results otherwise.

utils.dumpDatabase(connectionString, dirName, function(err, stdout, stderr) {});
utils.dumpHerokuMongoHQDatabase(appName, dirName, function(err, stdout, stderr) {});
utils.restoreDatabase(connectionString, dirName, function(err, stdout, stderr) {});
utils.dumpHerokuMongoHQDatabase(appName, dirName, function(err, stdout, stderr) {});

Configuration

mongo-utils logs some messages to allow you to see what's going on behind the scenes, primarily when doing the using the dump or restore commands. To see what's being logged, you may assign a log function which takes a single message argument to utils.log. By default, utils.log is a noop.

const utils = require('mongo-utils');
utils.log = (msg) => console.log(msg);

Prerequisites

For the commands to work, you need to have mongorestore and mongodump in your path.

Changelog

  • v2.0.0 Remove Heroku support
  • v1.1.0 Replace CoffeeScript with plain JS
  • v1.0.0 Orininal version by Meryn Stol

License

mongo-utils is released under the MIT License.
Copyright (c) 2013 Meryn Stol

About

Utilities for managing MongoDB databases

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 65.6%
  • CoffeeScript 33.1%
  • Makefile 1.3%