Why are Meteor.js apps not deployed by uploading to a server by doing the following:
- Install
npm
- Install meteor
$ curl https://install.meteor.com | /bin/sh
meteor create myApp
- Upload Meteor code files from development system
- Deploy using
meteor
And instead deployment guides are instructing us to convert Meteor apps into node.js modules using demeteorizer and manually installing Mongo etc which are much more tedious.