angular 11 support versions nodejs

  1. Install Node.js: Download the Node.js installer from the official website and run it. Follow the installation wizard to complete the setup.

  2. Verify installation: Open a command prompt and type node -v to check the installed Node.js version. This should display the installed Node.js version number.

  3. Install Angular CLI: Open the command prompt and type npm install -g @angular/cli to install the Angular command line interface globally.

  4. Verify Angular CLI installation: After the installation is complete, type ng --version in the command prompt to verify that the Angular CLI has been installed successfully and to check its version.

  5. Create a new Angular project: Navigate to the desired directory in the command prompt and type ng new project-name to create a new Angular project with the specified name.

  6. Start the development server: Navigate into the newly created project directory using the command prompt, then type ng serve to start the development server. This will compile the application and make it available at http://localhost:4200/.

  7. Access the application: Open a web browser and navigate to http://localhost:4200/ to view the newly created Angular application running on the development server.