Skip to content

Install NodeJS

How to install NodeJS on your computer.

Prerequisites

Installation without NVM

PowerShell
scoop install nodejs-lts
Bash
brew install node

Installation with NVM

Prerequisites

Steps

PowerShell
1
2
3
nvm install --lts
nvm use --lts
npm config set ignore-scripts true --global
Bash
1
2
3
nvm install --lts
nvm use --lts
npm config set ignore-scripts true --global

Resources