在Ubuntu16.04上安装Node
乌班图的版本和环境
Ubuntu 16.04, 通过Linode签约的服务器。
There are various possibilities for paraphrasing “流れ” in native Chinese, depending on the context. Here’s one option:
– 转变 – Change, transformation
安装 Node.js 和 npm
通过 npm 安装 n 包
使用 n 包来更新 Node.js 和 npm
sudo apt-get install -y nodejs npm
sudo npm cache clean
sudo npm install n -g
sudo n stable
sudo ln -sf /usr/local/bin/node /usr/bin/node
确认
请确认最后是否安装成功
只要确认版本正确就可以了
node -v
实际编写程序并进行确认
echo "console.log('Hello World')" >~/test.js
node test.js
顺便一提,test.js的内容是
console.log('Hello world')