Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 655 Bytes

README.md

File metadata and controls

48 lines (36 loc) · 655 Bytes

Setup on MacOS

Install homebrew

You can skip this step if you have homebrew installed on your system.

Read how to install Homebrew from its homepage.

Install Node 18

Update and upgrade installed packages:

brew update && brew upgrade

Install node using homebrew:

brew install node

Check the version of node:

$ node --version
v22.9.0

Install node 18:

brew install node@18

Overwrite linked version of node:

brew link --overwrite node@18

Check the version of node:

$ node --version
v18.20.4

Install Angular

Install angular cli

sudo npm install -g @angular/cli