码迷,mamicode.com
首页 > 其他好文 > 详细

node学习第一篇

时间:2016-08-03 14:52:49      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

创建一个http服务器

 1 //app.js
 2 var http = require("http");
 3 function start(req, res){
 4     //res.writeHead(200,{"Content-Type": "text/plain"});
 5     res.writeHead(200,{"Content-Type": "text/html"});
 6     res.write("<h2>app.js</h2>");
 7     res.end("<p>Hello world!</p>");
 8 }
 9 var server = http.createServer(start).listen("3000","127.1.1.1",function(){
10     var host = server.address().address;
11     var port = server.address().port;
12     console.log("应用实例,访问地址为 http://%s:%s", host, port);
13 });

 

node学习第一篇

标签:

原文地址:http://www.cnblogs.com/lee90/p/5732568.html

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