pm2运行node环境

Posted sellsa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pm2运行node环境相关的知识,希望对你有一定的参考价值。

1、安装nodejs

      安装文档

 

2、安装pm2

npm install -g pm2

 

3、测试helloworld

编写helloworld.js

var http = require(‘http‘);
http.createServer(function (req, res) {
    res.writeHead(200, { ‘Content-Type‘: ‘text/plain‘ }); res.end(‘Hello World\\n‘); 
}).listen(1337, "127.0.0.1"); 
console.log(‘Server running at http://127.0.0.1:1337/‘);

pm2启动

技术分享图片

pm2的选项命令查看帮助

pm2 --help

以上是关于pm2运行node环境的主要内容,如果未能解决你的问题,请参考以下文章

Docker快速搭建Node.js Express运行环境

Docker快速搭建Node.js Express运行环境

Docker快速搭建Node.js Express运行环境

CentOS 安装 pm2 运行出错

生产环境部署node记录:pm2和nginx

linux环境安装node.js环境和pm2