Nodejs v4.4.0API文档学习简介

Posted 风车车

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nodejs v4.4.0API文档学习简介相关的知识,希望对你有一定的参考价值。

文档参考地址: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文档学习简介的主要内容,如果未能解决你的问题,请参考以下文章

fastapi nodejs 性能比较

首个完整支持中文文档的深度学习框架——百度PaddlePaddle API文档简介

Nodejs源代码分析之Path

魔众博客系统 v4.4.0 后台菜单快捷搜索 优化已知字段问题

NodeJS API简介

Node与apidoc的邂逅——NodeJS Restful 的API文档生成