var http=require(‘http‘);
http.createServer(function(req,res){//创建web服务器对象
res.writeHead(200,{//给服务器增加头
‘content-type‘ : ‘text/plain‘
});
res.writeHead(301,{//给服务器增加头-重定向
‘Location‘ : ‘http://www.nodejs.com/‘
});
res.end();
url.parse(requestUrlStr).
hostname //主机名
url.parse(requestUrlStr).
port //端口
url.parse(requestUrlStr).
pathname //路径名
var http=require(‘http‘);
var options={
host:"nodejs.com",
port:88,
path:‘/‘
}
http.get(options,function(res){
}).on(‘err‘,function(){
})