Sunday, January 29, 2017

MeteorJs


  • How to install MeteorJs for Windows?

                                         Download the meteor setup(.exe) file from the official meteor website and run it and install it on your computer.


  • To create your first MeteorJs project run the below command in command prompt

"meteor create myFirstApp"


  • Go to the root folder myFirstApp type below command

"meteor"


  • Now it will create your meteor application.Enter below url in your web browser.

"http://localhost:3000/"
this is the default url.If you want to run your project in another port use the below command
"meteor run --port portnumber"
you can use another port instead of 3000 port using above command(eg- meteor run --port 3030)

click here to download an example
meteor_command