码迷,mamicode.com
首页 > Windows程序 > 详细

Nodejs v4.4.0API文档学习(1)简介

时间:2016-03-14 18:26:36      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:

文档参考地址:https://nodejs.org/dist/latest-v4.x/docs/api/

简介

下面是用nodejs编写的一个web服务的例子,返回"Hello World"。

const http = require(‘http‘);

http.createServer( (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/

文档中所有的例子都能同样的方式去执行。

  


Nodejs v4.4.0API文档学习(1)简介

标签:

原文地址:http://www.cnblogs.com/fhen/p/5276550.html

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