DEV Community

Cover image for Angular Project : Setting up the local environment and workspace
IamVKtechie
IamVKtechie

Posted on

Angular Project : Setting up the local environment and workspace

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.
Image description

  • 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, run node -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 run ng version.

Image description

That's it! You have set up Angular for development. Next step will be Create a workspace and initial application.

Top comments (0)