Meteor server options

Perhaps a noob question, but Is it ok to start the server with “meteor run” on a remote server or it is intended to build the package and then use the package with node.js on the server?

meteor run is development mode (no concatenation/minification of assets, etc, so you can, for example, debug it). Deploying a meteor app goes through a meteor build phase which generates a pure nodejs app. This is what you use in production.

thank you very much :smile: