moni
moni

Reputation: 201

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!

Upvotes: 8

Views: 6550

Answers (2)

Quin
Quin

Reputation: 541

Then find your myapp folder. Just search your computer for it and use that directory location.

For me, it was "cd users/myname/myapp"

Then I could simply "meteor run myapp" and I was fine.

Upvotes: 0

Umren
Umren

Reputation: 392

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

Upvotes: 9

Related Questions