代码:
用express创建项目
1、在控制台打印helloword,编写一个纯文本的hello.js,内容:
运行:node hello.js,运行结果是打印代码中的字符串;
2、启动一个http的web server,编写一个纯文本的server.js,内容:
//引入HTTP包
var http = require('http');
//创建http 的web服务器
var server = http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello ,This is node Servern');
});
//监听3000端口
server.listen(3000);
console.log('Server start success,port=3000');
运行该代码:
nohup node server.js &
此时通过http://127.0.0.1:8888/访问,就可以显示Hello ,This is node Server。