下载Node.js的安装包
wget https://npm.taobao.org/mirrors/node/v12.4.0/node-v12.4.0-linux-x64.tar.xz
解压Node.js的安装包
tar -xvf node-v12.4.0-linux-x64.tar.xz
重命名Node.js安装目录
mv node-v12.4.0-linux-x64/ /usr/local/node
加入环境变量
echo "export PATH=$PATH:/usr/local/node/bin" >> /etc/profile
环境变量立即生效
source /etc/profile
查看node和npm版本
node -v
npm -v
进行测试
创建js测试文件
vim helloworld.js
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(
200,
{
'Content-Type': 'text/plain'
});
response.end('Hello World\n');
}).listen(8080);
console.log('Server started');
运行helloworld.js文件
node helloworld.js
访问web IP/8080