Export and Import Mongodb from Meteor APP
问题 How is it possible to Import and export the MongoDB from Meteor APP into .json or .csv file ? 回答1: You can use mongoexport utility to export into a .json or .csv file and mongoimport to import to your db. Detailed info is found here: http://docs.mongodb.org/v2.2/reference/mongoexport/ 回答2: If you intend to reimport into mongodb, mongodump might be a bit better since you won't be losing type information Try mongodump mongodump --host 127.0.0.1:3001 Here you get BSON, and separate key indexes