Install software
1. Install Visual Studio Code
2. Install Git
3. Install Node.js
Configure Angular with NPM (node package manager)
1. install Angular CLI - use command prompt or VS Code terminal
npm install -g @angular/cli
2. install SASS
npm install -g node-sass
3. To create new Angular project with SASS as default style:
ng new project-name-here --style=scss
4. To create new Angular component:
ng generate component name-here
No comments:
Post a Comment