NodeJS
Node.js is an open source server environment. It allows developers to create both front-end and back-end applications using JavaScript.
https://nodejs.org/en/LTS: even-numbered releases (18, 28, etc.)
For example, I will install NodeJS
20
!
Table of contents
đ˛ â Optional
â â Required
đ â Pick One
âšī¸ â Information
macOS
â Installation
brew install node@20
đ˛ Validation
node --version npm --version
âšī¸ Location
/usr/local/lib/node_modules
/usr/local/lib/node_modules/npm/node_modules
Windows
â Installation
đ Chocolatey
choco install nodejs-lts
â Path Setting
setx /m PATH "%PATH%;C:\Program Files\nodejs" & refreshenv setx /m PATH "%PATH%;C:\{USER}\AppData\Roaming\npm" & refreshenv
â Open
Command Prompt
with administrator privileges
â Replace{USER}
by your current usernameđ Setup Wizard
- Visit https://nodejs.org/en/download
- Click
Windows Installer
- Open the
node-v20.xx.x-xxx.msi
inDownloads
- Do installation procedures of Setup Wizard
đ˛ Validation
node --version npm --version
âšī¸ Location
C:\Program Files\nodejs
C:\Program Files\nodejs\node_modules\npm
NPM Packages
C:\{USER}\AppData\Roaming\npm