01. Download / Install nodeJs
01 - new


Go to
fix - link tabindex in step-txt
follow commands
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
# in lieu of restarting the shell
\. "$HOME/.nvm/nvm.sh"
Add to or Create a .zshrc
or .bash_profile (whatever shell you use)
and add this code
source ~./.zshrc
or restart shell

02
# Download and install Node.js:
After restarting shell run this command and it will work
nvm install 22
# Verify the Node.js version:
# Should .print "v22.18.0"
node -v
# Should print "v22.18.0".
nvm current
# Verify npm version:
# Should print "10.9.3".
npm -v