/angular2-tutorial

Primary LanguageJavaScriptMIT LicenseMIT

Angular 2 Tutorial

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.

Requirements

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

How to try out the tutorial steps

  1. Clone the repository.
  2. Go into any of the tutorial step folders
  3. Install dependencies with JSPM
  4. Run live-server
  5. 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