添加Node.js PPA:
9.0新版安装:
curl -sL https://deb.nodesource.com/setup_9.x | bash -
8.0LTS版安装:
apt-get install curl python-software-properties
curl -sL https://deb.nodesource.com/setup_8.x | bash -
安装Node.js和NPM:
添加PPA文件后安装Nodejs包, NPM也将与node.js一起安装, 该命令还会在您的系统上安装许多其他相关软件包。
apt-get install nodejs
检查Node.js和NPM版本:
检查Node.js版本:
node -v
检查npm版本:
npm -v