To set up Angular for development, follow these steps:
Before Preforming anything you need to know the Angular Version Compatibility with NODE.JS, Typescript & RXJS.
Install Node.js:
Angular requires Node.js and its package manager, npm. Download and install Node.js from the official website (https://nodejs.org). It's recommended to use the LTS (Long-Term Support) version.If you are unsure what version of Node.js runs on your system, runnode -v
in a terminal window.*Install Angular CLI: *
Angular provides a command-line interface (CLI) tool for creating and managing Angular projects. Install it globally by running the following command in your terminal or command prompt:
npm install -g @angular/cli
After sometime your system will be installed with angular cli to confirm the same runng version
.
That's it! You have set up Angular for development. Next step will be Create a workspace and initial application.
Top comments (0)