Node.js - 第一个应用程序


在创建实际的“Hello, World!”之前 使用 Node.js 的应用程序,让我们看看 Node.js 应用程序的组件。Node.js 应用程序由以下三个重要组件组成 -

  • 导入所需的模块- 我们使用require指令来加载 Node.js 模块。

  • 创建服务器- 类似于 Apache HTTP Server 的服务器,它将侦听客户端的请求。

  • 读取请求并返回响应- 在前面的步骤中创建的服务器将读取客户端(可以是浏览器或控制台)发出的 HTTP 请求并返回响应。

创建 Node.js 应用程序

第 1 步 - 导入所需模块

我们使用require指令加载 http 模块并将返回的 HTTP 实例存储到 http 变量中,如下所示 -

var http = require("http");

第 2 步 - 创建服务器

我们使用创建的http实例并调用http.createServer()方法创建一个服务器实例,然后使用与该服务器实例关联的listen方法将其绑定在端口8081上。向其传递一个带有参数请求和响应的函数。编写示例实现以始终返回“Hello World”。

http.createServer(function (request, response) {
   // Send the HTTP header 
   // HTTP Status: 200 : OK
   // Content Type: text/plain
   response.writeHead(200, {'Content-Type': 'text/plain'});
   
   // Send the response body as "Hello World"
   response.end('Hello World\n');
}).listen(8081);

// Console will print the message
console.log('Server running at http://127.0.0.1:8081/');

上面的代码足以创建一个侦听的 HTTP 服务器,即等待本地计算机上 8081 端口上的请求。

第 3 步 - 测试请求和响应

让我们将步骤 1 和 2 放在一个名为main.js的文件中,并启动我们的 HTTP 服务器,如下所示 -

var http = require("http");

http.createServer(function (request, response) {
   // Send the HTTP header 
   // HTTP Status: 200 : OK
   // Content Type: text/plain
   response.writeHead(200, {'Content-Type': 'text/plain'});
   
   // Send the response body as "Hello World"
   response.end('Hello World\n');
}).listen(8081);

// Console will print the message
console.log('Server running at http://127.0.0.1:8081/');

现在执行 main.js 来启动服务器,如下所示 -

$ node main.js

验证输出。服务器已启动。

Server running at http://127.0.0.1:8081/

向 Node.js 服务器发出请求

在任意浏览器中打开http://127.0.0.1:8081/,观察以下结果。

Node.js 示例

恭喜,您已经启动并运行了第一个 HTTP 服务器,该服务器正在响应端口 8081 上的所有 HTTP 请求。