I have a script written in Node that populates MongoDB with the data that I need. My Meteor app needs to access this. What would be the best way to achieve this? I can think of 2 ways:
- Make the Meteor app use an external MongoDB
- Make the Node script insert/update the Meteor MongoDB
Is there a 3rd way? What is your recommendation?