Lesson02
2014-07-11 本文已影响0人
liguoqinjim
1.HelloWorld.js
console.log("HelloWorld")
2.server.js
var http = require('http'); http.createServer(function(req,res){ res.writeHead(200,{'Content-Type':'text/html'}); res.write('<h1>Http Server changed</h1>'); res.write('<p>安装supervisor的命令sudo npm install -g supervisor</p>'); res.end('<p>By JimLi</p>'); }).listen(5858);
3.supervisor的安装与运行
sudo npm install -g supervisor
运行方法:supervisor app.js
4.node的一些命令
命令 | 功能 |
---|---|
node -v |
查看版本 |
node -e eval script |
e后面直接跟javascript代码,直接运行 |
node app.js |
运行node.js的代码 |