Chinaunix首页 | 论坛 | 博客
  • 博客访问: 201898
  • 博文数量: 43
  • 博客积分: 2178
  • 博客等级: 大尉
  • 技术积分: 390
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-13 15:19
文章分类

全部博文(43)

文章存档

2012年(23)

2011年(10)

2009年(10)

分类: 系统运维

2011-12-28 16:48:28

      1. //载入模块
      2. var http = require('http');
      3. //创建服务
      4. http.createServer(function (request, response) {
      5.   //发送头文件
      6.   response.writeHead(200, {'Content-Type': 'text/plain'});
      7.   //写入文字
      8.   response.end('Hello World\n');
      9. }).listen(8124); //监听端口
      10. //显示运行结果
      11. console.log('Server running at ');
阅读(1654) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~