Skip to content

Instantly share code, notes, and snippets.

@munkhorgil
Last active October 10, 2019 15:33
Show Gist options
  • Save munkhorgil/7cd3bd0f0ee03f6277bdac61b05d0149 to your computer and use it in GitHub Desktop.
Save munkhorgil/7cd3bd0f0ee03f6277bdac61b05d0149 to your computer and use it in GitHub Desktop.
Invoke mongodb commands from js file
(function() {
connection = new Mongo();
db = connection.getDB('your_database');
// any mongo command with client
db.dropDatabase();
})();
// Invoke js
mongo clearMongoDb.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment