Node.js 教程

概述

第一个 服务器 的例子就从 “Hello World” 开始:

var http = require('http');

http.createServer(function (request, response) {
  response.writeHead(200, {'Content-Type': 'text/plain'});
  response.end('Hello World\n');
}).listen(8124);console.log('Server running at http://127.0.0.1:8124/');

把代码拷贝到example.js文件里,用 node 程序执行

> node example.js
Server running at http://127.0.0.1:8124/

文档中所有的例子都可以这么执行。

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号