node.js实现http服务器

var http = require('http');
var url = require('url');
//var http = require('url');
http.createServer(function (request, response) {
// 发送 HTTP 头部 
// 发送 HTTP 头部 
// HTTP 状态值: 200 : OK
// 内容类型: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// 发送响应数据 "Hello World"
response.end('Hello The World\n');
}).listen(8800);
// 终端打印如下信息
console.log('Server running at http://127.0.0.1:8800/');

    A+
发布日期:2016年08月01日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: