Reputation: 3300
I would like to export a Mongo Collection to an .csv. Mongo provides a solution for this but it is limited to the shell.
http://docs.mongodb.org/manual/reference/mongoexport/
I'm using the native driver for node.js and would like to be able to do this in a script as opposed to being invoked from the shell.
Upvotes: 3
Views: 4305
Reputation: 312149
If you're just looking to run the mongoexport
command from your node.js app, you can use child_process.spawn
to do that.
Upvotes: 3