安装
- 查找最新版本
dnf module list nodejs
如图,最新稳定版为14
2021-06-20_180559.jpg
- 安装最新版本
dnf module install nodejs:14
参考 https://help.aliyun.com/document_detail/172788.html?spm=a2c4g.11186623.6.1259.187d350fdjI0aT
使用pm2
- 安装pm2
npm i pm2 -g
- 运行
pm2 start hello.js --name hello
- 开机自启
pm2 startup
- 保持进程
pm2 save
网友评论