标签:
如果我们使用PHP来编写后端的代码时,需要Apache 或者 Nginx 的HTTP 服务器,并配上 mod_php5 模块和php-cgi。
从这个角度看,整个"接收 HTTP 请求并提供 Web 页面"的需求根本不需 要 PHP 来处理。
不过对 Node.js 来说,概念完全不一样了。使用 Node.js 时,我们不仅仅 在实现一个应用,同时还实现了整个 HTTP 服务器。事实上,我们的 Web 应用以及对应的 Web 服务器基本上是一样的。
在你的项目的根目录下创建一个叫 server.js 的文件,并写入以下代码:
var http = require(‘http‘); http.createServer(function (request, response) { response.writeHead(200, {‘Content-Type‘: ‘text/plain‘}); response.end(‘Hello World\n‘); }).listen(8888); console.log(‘Server running at http://127.0.0.1:8888/‘);
以上代码我们完成了一个可以工作的 HTTP 服务器。
使用 node命令 执行以上的代码:
node server.js Server running at http://127.0.0.1:8888/
接下来,打开浏览器访问 http://127.0.0.1:8888/,你会看到一个写着 "Hello World"的网页。
分析Node.js 的 HTTP 服务器:
标签:
原文地址:http://www.cnblogs.com/lansy/p/4308682.html