Step by step tutorial for getting started with Angular 2 and JSPM.
The folders below should be loaded as separate projects and include all the required files to run a specific step in the tutorial. Each folder represents a separate learning block in the road to fully understand how to create an Angular 2 application.
You need to have Node.js installed for using NPM.
JSPM for managing the packages
npm install jspm -g
live-server for testing out in a browser
npm install live-server -g
- Clone the repository.
- Go into any of the tutorial step folders
- Install dependencies with JSPM
- Run live-server
- Open your browser and browse to http://127.0.0.1:8080
git clone https://github.com/InfomediaLtd/angular2-tutorial
cd angular2-tutorial/1-getting-started
jspm install
live-server