Changes made in Mongo - Solved

I’m at the point now where I am testing and constantly changing the entries in the database. My questions is do I need to restart the local host every time to reflect these changes or will Meteor automatically pick these up.

Sometimes it will restart by itself which makes me question whether I need to wait and restart every time.

Meteor will not reload if you only change the database documents, Meteor’s job is to show these changes as they happen. If you change you code however, the app will reload.

When you are doing changes in the database, Meteor immediatly update the data in your app. That’s one of his main selling point.

Thanks for the replies - changes made using robomongo get reflected in the Meteor app.