Cloud9 is the only online IDE recommended for Meteor in meteor.com. But the 'two clicks to awesome' guide is not applicable, because Meteor is not listed in workspace types any more. What's the best way to create a Meteor app on Cloud9?
I tested the following procedure and it works:
curl https://install.meteor.com/ | sh
in command line to install Meteor.meteor create my_cool_app
. (Don't put ~/
before the app name.)cd/my_app
meteor --port $IP:$PORT
to start the sample app. (Without $IP:$PORT
it hangs). Make sure the app is working.meteor list
on your previous working directory.meteor add
and meteor remove
commands to add/remove the MDG packages. If you install 3rd party packages first, you'll get weird errors.meteor --port $IP:$PORT
to start your app. The first time it may take a few minutes to start the app but later it'll be a few seconds.