Provide a training support based on Angular and for Angular. Slides are accessible here
install Node.js
Make sure node and npm are in the your Path.
echo $PATH
if you are behind a Proxy check the NPM proxy configuration
npm config set proxy http://[proxy]:[PORT] npm config set https-proxy http://[proxy]:[PORT]
check also proxy variables in your environment
set HTTP_PROXY=http://[proxy]:[PORT] set HTTPS_PROXY=http://[proxy]:[PORT] set NO_PROXY=http://[no_proxy]:[PORT];
To install it locally:
- Clone the repo
- npm install
- If you don't have gulp installed: npm install -g gulp
- npm run typings
- npm run jspminit
- npm run jspm
To compile and run it locally
- Compile only: npm run compile
- Run the server only: npm run serve
- Run the server and compile automatically each time a file is modified: npm run dev