1、移除旧 node.js
# yum remove nodejs
2、添加 node.js 的 yum存储库
Node.js 12
# yum clean all && yum makecache fast
# yum install -y gcc-c++ make
# curl -sL https://rpm.nodesource.com/setup_12.x | sudo -E bash -
Node.js 10
# yum clean all && yum makecache fast
# yum install -y gcc-c++ make
# curl -sL https://rpm.nodesource.com/setup_10.x | sudo -E bash -
版本自行选择
3、安装 node.js
# yum install nodejs
4、查看版本
# node -v
v10.24.1
# npm -v
6.14.12
5、测试
创建文件 demo_server.js
# vim demo_server.js
输入内容
var http = require('http');
http.createServer(function (request, response) {
// 发送 HTTP 头部
// HTTP 状态值: 200 : OK
// 内容类型: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// 发送响应数据 "Hello World"
response.end('Hello World\n');
}).listen(3001);
// 终端打印如下信息
console.log('Server running at http://127.0.0.1:3001/');
运行 JS 文件
# node demo_server.js
打开浏览器访问 http://127.0.0.1:3001/
或
Linux 使用 # curl http://127.0.0.1:3001/
- 打赏
请选择打赏方式
- 微信
- 支付宝