程序员和他的女神们日总结每日知识总结

node.js基础

2017-06-07  本文已影响1人  ZhongQw

创建第一个应用——hello world!

  var  http=require('http');
  http.createServer(function(request,response) {
          respose.write.Head(200,{'Content-Type': 'text/plain'});
          response.end('Hello World\n');
   }).listen(8888);
console.log('Server running at http://127.0.0.1:8888/');
上一篇 下一篇

猜你喜欢

热点阅读