I'm trying to follow the Angular tutorial and I can't pass step 00 part 2. I used node.js and try to run the command scripts/web-server.js. It just shows me "..." and when I go to the local host port 8000 it says couldn't connect.
any ideas?
You just need to:
git clone git://github.com/angular/angular-phonecat.git
cd angular-phonecat
node ./scripts/web-server.js
Go to http://docs.angularjs.org/tutorial and follow the steps there. Specifically do the following - In command prompt navigate to your solution directory - i.e. Users\"<>"\angular-phonecat and run
npm install
This command will download the following tools, into the node_modules directive:
Bower - client-side code package manager
http-server - simple local static web server
Karma - unit test runner
protractor - end 2 end test runner
and then run the following command -
npm start
and now you should be able to navigate to localhost:8000/app/index.html on your browser !
node ./scripts/web-server.jsand it doesn't work?