Angular Notes
Angular Notes
A Node.js is runtime environment for executing JavaScript code out of the browser environment.
Angular CLI:
Angular CLI is a command line interface which we use to create new angular project or generate
some boiler plate code as well as create deployable packages.
To create a new angular project, move to the folder where you want to create the project using
command prompt and type the following command.
ng new project-name
To run an angular project, move to the project folder using command prompt and type following
command.
ng Serve
If we delete node_module folder of our angular project we install the dependencies again by
npm install command.