操作系统:64为centos 6.3
1.从http://nodejs.org/下载安装包
2.设置PATH,以便终端可以找到node命令
3.创建一个js文件hellow.js,文件内容如下
console.log('Hellow World!');
?
4.在终端运行该js,node hellow.js可以在控制台看到打印:Hellow World
5.console是nodejs提供的控制台对象,console.log,console.error相当于java中的System.out,System.err
6.创建一个http服务:
var http = require('http'); http.createServer(function(req,res){ res.writeHead(200,{'Content-type':'text/html'}); res.write('<h1>Hello, Nodejs!</h1>'); res.end(''); }).listen(8080); console.log('Http Server is listening at port 8080');
?
在浏览器中输入http://localhost:8080即可看见页面
7.默认情况下修改app.js后需要重新启动服务器,如果要实现类似php那样修改文件直接在浏览器看见修改效果,可以借助supervisor实现
安装命令:npm install -g supervisor
启动服务器命令:supervisor app.js