码迷,mamicode.com
首页 > Web开发 > 详细

Node.js发布http服务

时间:2018-11-09 10:49:59      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:头部   响应   div   targe   request   node   www   OLE   enter   

2018-11-09 09:43:03   Visit  0

简单服务

var http = require(\‘http\‘);

http.createServer(function (request, response) {

    // 发送 HTTP 头部 
    // HTTP 状态值: 200 : OK
    // 内容类型: text/plain
    response.writeHead(200, {\‘Content-Type\‘: \‘text/plain\‘});

    // 发送响应数据 \"Hello World\"
    response.end(\‘Hello World\\n\‘);
}).listen(8888);

// 终端打印如下信息
console.log(\‘Server running at http://127.0.0.1:8888/\‘);

 

http静态文件服务

安装http-server

npm install http-server -g

 

启动服务

http-server -p 8089

 

 

 

Node.js发布http服务

标签:头部   响应   div   targe   request   node   www   OLE   enter   

原文地址:https://www.cnblogs.com/Leechg/p/9933378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!