these are my notes i use for starting a new project in angularjs2.
i am using a ubuntu linux machine.

to begin a new angularjs2 project:
source: https://github.com/angular/quickstart/blob/master/README.md

git clone https://github.com/angular/quickstart proj1 && cd proj1

rm -rf .git

git init
git add .
git commit -m "WHATEVER YOU WANT TO NAME YOUR FIRST COMMIT"

npm install
npm start


after you have sent these command, simply open your browser to url: http://localhost:3000/