Egidi
Egidi

Reputation: 1776

Backup mongodb database from node.js

I've been searching for an easy way for backing up an entire database in a simple step in node.js but surprisingly i din't find an easy to use module for this purpose.

The easiest solution I found on the net is using shelljs to run a shell mongodump command.

Is there any other way for making this task easy?

Upvotes: 0

Views: 2626

Answers (1)

CharlesL
CharlesL

Reputation: 942

If you're thinking about backing up to S3, perhaps this would work? https://github.com/theycallmeswift/node-mongodb-s3-backup

Upvotes: 1

Related Questions