※安装node.js
yum install nodejs
※安装npm模块管理工具
在工作目录下 wget https://www.npmjs.com/install.sh
下载完install.sh这个shell文件后修改其权限
chmod u+x ./install.sh
运行这个脚本
./install.sh
耐心等待脚本安装,需要几分钟
※通过npm安装express
npm install -g express
npm install -g express-generator
※初始化工程(使用ejs模板引擎)
首先进入node环境
node
初始化项目myapp
express -t ejs myapp
其中myapp是你的项目名称
成功后会有如下输出:
install dependencies:
$ cd myapp && npm install
run the app:
$ DEBUG=myapp:* npm start
提示你进入myapp文件并使用nmp install 命令来根据package.json文件里的描述安装相应模块
使用debug=myapp:* npm start 命令进入调试模式,这时可以通过浏览器输入http://localhost:3000看见express的默认页面。这时的运行等级是all,所有的log信息都会输出。
在myapp目录下运行nodejs
node app.js即可
※注意事项1
运行app.js时会一闪而过,原因是你的app.js文件里没有监听任何端口,当然什么都没有。
建立一个http服务器
var http = require('http');
http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write('<h1>node.js<h1>');
res.end('<p>Hello world</p>');
}).listen(3000);
console.log("HTTP server is listening at port 3000.");
这时访问http://127.0.0.1:3000即可看到自己的页面
※注意事项2
当前端使用nginx时需要在nginx的配置文件中设置反向代理,否则从外网访问不了3000端口
设置端口时一定要把nodejs的端口和nginx反向代理的端口错开,比如nginx打开了2999端口,nodejs则使用3000端口,如果相同,nodejs会报端口已被占用的错误。
server {
listen 2999;
server_name www.yinshuaihua.com yinshuaihua.com;
location / {
proxy_pass http://127.0.0.1:3000;
proxy_http_version 1.1;
proxy_set_header Connection "";
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
这时访问(例如我的网站是www.yinshuaihua.com)www.yinshuaihua.com:2999即可看见页面。