- Install Node.js
- Run command
npm install
in project directory. - Run command
ng serve -o
to package project, start web server, and open browser to localhost. Any changes made to a file while webserver is running will cause it to be recompiled and served to the browser. - If #3 doesn't work, try
npm run ng serve -o
- With command line navigate to project root.
- Run command
ng test
and let Chrome load up. - Top right corner of Chrome click
Debug
. You can close up the old tab. - Bring up developer console. You can now put break points to follow the code and see why something is failing.