Nemo

Nemo 关注TA

路漫漫其修远兮,吾将上下而求索。

Nemo

Nemo

关注TA

路漫漫其修远兮,吾将上下而求索。

  •  普罗旺斯
  • 负责帅就完事了
  • 写了1,496,113字

该文章投稿至Nemo社区   Js、Css、Html  板块 复制链接


【NodeJs】Http: 基本服务

发布于 2016/08/01 21:48 3,465浏览 0回复 607

var http = require('http');

var server = http.createServer(function (req,res){
        console.log(req.url);
        res.writeHead(200,{'Content-Type':'text/html'});
        res.write('<h1>Node.js</h1>');
        res.end('<p>end.</p>');
});
server.listen(3000);
server.on('close',function (){
        console.log('server is closed.');
});

console.log('http server is listening at port 3000.');

本文标签
 {{tag}}
点了个评