Angular JS
Latest Version - 13
NodeJs
Node.js is an open-source, cross-platform, back-end JavaScript runtime environment that runs on the V8 engine and executes JavaScript code outside a web browser.
Node. js is not a programming language. Rather, it's a runtime environment that's used to run JavaScript outside the browser.
NPM
npm is the package manager for the Node JavaScript platform. It puts modules in place so that node can find them, and manages dependency conflicts intelligently. It is extremely configurable to support a wide variety of use cases. Most commonly, it is used to publish, discover, install, and develop node programs.
Maven vs NPM
There are differences between Maven and npm. For instance, Maven is also a full build system, whereas the scope of npm is primarily dependency management.
Angular CLI
The Angular CLI is a command-line interface tool that you use to initialize, develop, scaffold, and maintain Angular applications directly from a command shell.
Open the VS code from Command line - code .
Note - While installing VScode select the option for menu in right click.
CLI Commands
ng new <app-name> --> It will create a new angular app.
ng serve --> run the application
npm install bootstrap
npm install jquery
ng generate component MyComponent/todos
To check any Angular Commands and components
https://angular.io/api/common/NgIf
Bootstrap Components
https://getbootstrap.com/docs/5.1/getting-started/introduction/
Comments
Post a Comment