Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you run Meteor on Windows 8?

I've installed Meteor Js by following the instructions but still it won't work. It will create an app but won't run it. It always says : You're not in a Meteor project directory!

like image 764
moni Avatar asked Mar 08 '13 19:03

moni


People also ask

How do I run a meteor project on Windows?

meteor run You can use the application by pointing your web browser at localhost:3000. No Internet connection is required. This is the default command. Simply running meteor is the same as meteor run .


1 Answers

I just installed Meteor on Windows 8 with success and developing my first application with it.

First you go to http://win.meteor.com/ Second you do what there is written.

Don't forget to reboot and set node.exe to Windows 7 Compatibility.

After that you open cmd.exe

meteor create sample

cd sample

meteor

like image 69
Umren Avatar answered Oct 02 '22 20:10

Umren