码迷,mamicode.com
首页 > 其他好文 > 详细

pm2运行node环境

时间:2018-02-07 14:34:15      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:编写   ext   lsa   lan   UI   npm   log   create   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环境

标签:编写   ext   lsa   lan   UI   npm   log   create   node   

原文地址:https://www.cnblogs.com/sellsa/p/8425601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!