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

Nodejs 创建web服务

时间:2014-12-18 00:03:27      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   io   color   os   sp   on   

 1 // 加载http服务包
 2 var http = require("http");
 3 
 4 // 创建服务
 5 var server = http.createServer(requestListener);
 6 
 7 // 监听端口
 8 server.listen(7798);
 9 
10 // 请求监听处理方法
11 function requestListener (req, res) {
12     console.info(req.url); // 控制台输出信息
13     res.write("www.xmczzs.com"); // web请求的源代码
14     res.end(); // 请求结束
15 }
16 
17 
18 // 访问地址
19 // http://localhost:7798/something

 

Nodejs 创建web服务

标签:style   blog   http   ar   io   color   os   sp   on   

原文地址:http://www.cnblogs.com/zsk526/p/4170645.html

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