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

node基础02:第一个node程序

时间:2017-01-03 09:44:06      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:char   end   style   pre   程序   function   icon   server   create   

1.第一个web服务器

var http = require("http");
http.createServer(function(request, response){
    response.writeHead(200, {"Conrtent-Type": "text/html; charset=utf-8"});
    if (request.url!==‘/favicon.ico‘) {
        console.log("visit");
        response.write(‘hello world‘);
        response.end();
    }
}).listen(8000);
console.log(‘server running at http://127.0.0.1:8000‘)

 

node基础02:第一个node程序

标签:char   end   style   pre   程序   function   icon   server   create   

原文地址:http://www.cnblogs.com/noper/p/6243695.html

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