Angular seed no longer appears to come with a node server called web-server.js
Someone please correct me if I am wrong, but i too noticed this a few days ago. Was a decision made to remove node from the standard Angular seed? Perhaps just write your node server, you really only need a bare minimum to get something running on a port. Or else, go with something more comprehensive like express. Many examples available on the respective websites. I went with Express, but also just a one liner with python like: #!/bin/bash open "http://localhost:8888" python -m SimpleHTTPServer 8888 Does the trick - running on port 8888 etc. Cheers, On 1 Apr 2014, at 22:00, Konrad Dziedzic <[email protected]> wrote: > Hi, > I am really sorry if I missed something, please forgive. > I want to learn how to use Angular.js so I started with the tutorial. I did > clone git repo as described in tutorial, installed node.js and karma then I > went for step 0 of the tutorial called: 0 - Bootstrapping > It is written there: > For node.js users: > In a separate terminal tab or window, run node ./scripts/web-server.js to > start the web server > but when I actually tried to run this script I got an error saying that > module cannot be found. In fact ./scripts contains only script update-repo.sh > and folder called private. > Can someone please tell me if i am missing something or is something wrong > with the tutorial at the moment? > > Thank you in advance. > > > -- > You received this message because you are subscribed to the Google Groups > "AngularJS" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/angular. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
