若是咱们使用PHP来编写后端的代码时,须要Apache 或者 Nginx 的HTTP 服务器,并配上 mod_php5 模块和php-cgi。php
从这个角度看,整个"接收 HTTP 请求并提供 Web 页面"的需求根本不需 要 PHP 来处理。html
不过对 Node.js 来讲,概念彻底不同了。使用 Node.js 时,咱们不单单 在实现一个应用,同时还实现了整个 HTTP 服务器。事实上,咱们的 Web 应用以及对应的 Web 服务器基本上是同样的。node
在你的项目的根目录下建立一个叫 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 服务器:ui