Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 481 Bytes

node.md

File metadata and controls

25 lines (17 loc) · 481 Bytes

Installing Node.js

Some fast commands are below. The complete documentation (including other platforms) is here

With apt (e.g., debian)

curl -sL https://deb.nodesource.com/setup_18.x | sudo bash -
sudo apt install nodejs

With homebrew (e.g., macos)

brew update
brew install node@18

With yum (e.g., centos)

curl -sL https://deb.nodesource.com/setup_18.x | sudo bash -
sudo yum install nodejs