Starting with Linux and OSX:
First make a dir where you want to store your projects, then navigate to it.
Install meteor with following command:
$ curl install.meteor.com | /bin/shCreate project:
$ meteor create myappAnd, here comes the best part. Meteor runs fro your OS itself.
Go to your project dir
$ cd myappRun meteor:
$ meteorYou should see this line in your terminal:
Running on: http://localhost:3000/
Now just open your browser and visit localhost on port 3000
Basic app just show in console.log info after clicking the button.If you want more interesting app built in meteor instead of
$ meteor create myappjust use:
$ meteor create --example leaderboard (or) wordplay (or) todos (YourAppName)
Because Installing Meteor on Windows gives few problem at the moment, i will cover it later, but in few days i think there will be .msi installer released.
Have fun with your newly created apps and let the code be with you :)
No comments:
Post a Comment