hloureiro
hloureiro

Reputation: 1

Meteor running on my own infrastructure

After reading the Meteor official documentation regarding this subjet, I would like to know if it's possible to change my code, deploy the new version, but without restarting the node js server? My idea is to have a development server, where I make my updates, and then after testing commit the changes to the real production server, so that I don't break anything. If this doen't make any sense, what is the current best approach to accomplish the same results?

Thanks a lot for the help.

Upvotes: 0

Views: 168

Answers (1)

Andrey
Andrey

Reputation: 107

You should not need to reset the node js server. Any changes to the code will be injected into the client's browser.

From Meteor main page:

Hot Code Pushes.

Update your app while users are connected without disturbing them. When you push a new version, the new code is seamlessly injected into each browser frame in which the app is open.

Upvotes: 1

Related Questions