mongodb-import-export-cli
v1.3.1
Published
Import and Export mongoDB collection to JSON file.
Downloads
16
Maintainers
Readme
mongoDB-import-export-cli
THIS PROJECT IS DEPENDENCIES FREE
Import and Export mongoDB collection to JSON file and create Backup from your database. You can use it for database versionning or just export/import your DB. Works only in localhost mongodb://localhost/.
Help Me
This project need your help, if you find bug you can create a new issue here
Install
You need to have MongoDB on your computer/server. Read Mongo Docs
Install the package npm i mongodb-import-export-cli
Doesn't work in global.
Use it (command)
Config & Help
- Edit Config :
mcli config edit
- Show Config :
mcli config show
- Help :
mcli help
Import / Export Collection(s)
- Import Collection :
mcli import --c=collection_name
- Export Collection :
mcli export --c=collection_name
- Import Collection from specific file :
mcli import --c=collection_name --f=my-folder/my-file.json
- Export Collection to specific file :
mcli export --c=collection_name --f=my-folder/my-file.json
BackUp / Restore Database
- BackUp Database :
mcli backup
- BackUp and compress (tar.gz) Database :
mcli backup --tar
ToDo
Multiple Import/Export
- Add multiple Import
mcli import --c=collection1,collection2
- Add multiple Export
mcli export --c=collection1,collection2
Restore
- Add Restore from backup directory or archive
Links
Licence
MIT Licence
Copyright (c) 2020 André LECLERCQ
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.