Posts

Showing posts from February, 2022

Angular Handy code

Image
  Angular Handy Code Following components are involved in installing and using angular Node, npm(node packaging manager), ng(angular) Node – server (where over angular application deployed locally to run and test) NPM – Responsible to install angular and all other libraries, packages, and packaging deployment jar etc.   1.        After installing node, npm in your machine to download and install angular we need Angular CLI tool, which will help us to create angular application Angular CLI (command line interface) is a tool to install which will create and run angular application.   Below command will install angular in your local machine. Cmd: npm -g angular@cli   2.        After installing angular   we can use “ng” commands to create angular application and adding features through terminal - to create new application   cmd: ng new <project name> - to create compon...