Skip to content

andrejnsimoes/angular2-first-steps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

angular2-first-steps

Installation

Requires Node.js v4+ to run.

Install Angular-CLI

$ npm install -g angular-cli@latest

Create new project and run it

$ ng new my-app
$ cd my-app
$ ng serve

or, if you prefer yarn

$ ng new my-app --skip-npm
$ cd my-app
$ yarn
$ ng serve