Chapter 1 :- Node and NPM
Chapter 2 :- Running first app & Angulr CLI
Chapter 3 :- VS Code editor.
Chapter 4 :- TypeScript
Chapter 5 :- CLI project folder structure
Chapter 6 :- The config JSON files
Chapter 7 :- ng serve vs ng build
Chapter 8 :- Angular the binding framework
Chapter 9 :- Component and Modules
Chapter 10 :- Expression , Decorators and TemplateURL
Chapter 11 :- Declaration and BootStrap in Modules
Chapter 12 :- The main.ts file for module startup
Chapter 13 :- Index.html and the selector tag
Chapter 14 :- Polyfills
Chapter 15 :- Webpack :- Packaging and deploying
Chapter 16 :- Vendor.js and Runtime.js
In order to learn angular, we have to learn Node first.
Without Node forget about Angular bcz we can't install angular bcz Angualr installation is so complex so we need to have some framework to do that., thats why node is helping to us.
What is Node?
Node is JS runtime.
To Run javscript outside the browser
Node is programmatic platform, people who write fully in JS.
So that we have
For Angular purpose we have to learn NPM-->Node package Manager.
Using NPM--> npm install angular-->1.x
npm install angularjs -->2.x,3.x,4.x,5.x---
difficult to bring angular latest why?
because if want latest then you need to install every module separately. So, solution angular CLI
command is npm install @angualr/cli -g
-g is used to install angualr cli globally
if you want more explore cli.angular.io
for first cmd for angular sample application: ng new CustomerApplication
ng create--> to create the application
ng serve--> to serve the application
IN VS studio:
go to code.visualstudio.com
TYPESCRIPT:
Comments
Post a Comment