erfan-mongo-json-backup
v1.0.2
Published
Backup all collections data inside a folder in .json files with mongoose and mongoexport.
Downloads
11
Maintainers
Readme
Nodejs: erfan-mongo-json-backup
📖 Getting started
$ npm i erfan-mongo-json-backup
This package use mongoose and mongoexport command for backup.
Process
This package creates a folder with name like <DATABSE_NAME>-<CURRENT_DATE_STRING>
and
stores all collections in .json
files with their name inside the folder.
💻 Usage
const mongoBackup = require('erfan-mongo-json-backup');
const connectionString = "<DATABASE_CONNECTION_STRING>";
const dbOptions = {
user: "<USERNAME>",
pass: "<PASSWORD>",
host: "<HOST>",
port: 27017,
database: "<DATABSE_NAME>",
removeDayBeforeBackup: true,
};
mongoBackup(connectionString, dbOptions);
💡 Props
| Prop | Type | Example | Note |
| ----------------- | ---------- | ------- | ---------------------------------------------------------------------------------------------------------- |
| user
| string
| admin
| Database Username.
| pass
| string
| 12345678
| Database Password.
| host
| string
| localhost
| Database Host.
| port
| number
| 27017
| Database Port.
| database
| string
| admin
| Database Name.
| removeDayBeforeBackup
| boolean
| true
| Removes the day befores backup folder.
📜 License
This library is provided under the Apache License.