0% found this document useful (0 votes)
4 views1 page

Install and Setup Node.js & Angular

The document provides instructions for installing Visual Studio Code and Node.js on Windows, including commands for checking versions and setting execution policies in PowerShell. It also outlines how to install the Angular CLI, create a new Angular project, and run the project. Key commands include 'npm install -g @angular/cli', 'ng new project1', and 'ng serve'.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Install and Setup Node.js & Angular

The document provides instructions for installing Visual Studio Code and Node.js on Windows, including commands for checking versions and setting execution policies in PowerShell. It also outlines how to install the Angular CLI, create a new Angular project, and run the project. Key commands include 'npm install -g @angular/cli', 'ng new project1', and 'ng serve'.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

[Link]

com/download - Visual Studio Code Install

[Link] - Node Js Installer(Window)


node -v = version check in cmd

Get-ExecutionPolicy – Window powershell – Run as administrator

Set-ExecutionPolicy RemoteSigned – To free the node from restricted mode


Yes
Get-ExecutionPolicy

npm install -g @angular/cli – Angular Package Installer Command

ng version – Angular version checking command

ng new project1 (Project name - creation)

Questions – N / CSS / N

cd project1 – open project command

ng serve – run the project

You might also like