- Forums
- Angular
- Angularjs2 - How To Start A New Project In Command Line
these are my notes on how to start a new project in angularjs2. i will show you the commands you will need [4597], Last Updated: Mon Jun 24, 2024
webune
Thu Jul 07, 2016
0 Comments
395 Visits
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/