【Ubuntu】从 NodeSource 中安装 Node.js 和 npm

  1. 1. 介绍
  2. 2. 安装说明

介绍

NodeSource 是一个公司,聚焦于提供企业级的 Node 支持。它维护了一个 APT 软件源,其中包含了很多 Node.js 版本。如果你的应用需要指定版本的Node.js 版本,使用这个软件源。
GitHub地址:https://github.com/nodesource/distributions

安装说明

Node.js v19.x:

  • Ubuntu
1
2
3
curl -fsSL https://deb.nodesource.com/setup_19.x | sudo -E bash - &&\
sudo apt-get install -y nodejs

  • Debian
1
2
3
curl -fsSL https://deb.nodesource.com/setup_19.x | bash - &&\
apt-get install -y nodejs

Node.js v18.x:

  • Ubuntu
1
2
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - &&\
sudo apt-get install -y nodejs
  • Debian
1
2
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - &&\
apt-get install -y nodejs