I would be posting a series on learning angular js
I would be posting small todos, if you follow along you should be able t
To Beging with
1. you need to install Node.JS (https://nodejs.org/en/)
2. Node.js would get you npm also
3. Download WebStorm as Editor
4. Download Angular CLI command npm install -g @angular/cli)
5. Create new angular app (command d:\RnD\Angular\> ng new HelloAngular
7. open your newly created project in browser by command ng serve --open
one pending todo here is overview of the angular project basic terminolgies
app --> module --> component
every component would have --> .ts , .css, .htmls , .spec file
- Baljeetsingh