Node.js Web模块

时间:2024-01-21 08:56:57

什么是Web服务器?

Web服务器是处理由HTTP客户端发送的,如web浏览器的HTTP请求的软件应用程序,并返回响应于客户端网页. Web服务器通常伴随着图片,样式表和脚本的HTML文档。

大多数Web服务器支持服务器端脚本使用脚本语言或重定向到其执行从数据库中获取数据的特定任务的应用程序服务器,执行复杂的逻辑等。然后通过Web服务器发送结果到HTTP客户端。

Apache web服务器是最常用的网络服务器中的一个。它是一个开源项目。

Web应用程序体系结构

Web应用程序通常分为四个层次:

Node.js Web模块

  • Client - 此层由Web浏览器,移动浏览器或应用程序,可以使HTTP请求到万维网服务器。

  • Server - 这一层包括可拦截的要求由客户通过Web服务器响应。

  • Business - 此层利用Web服务器执行所需的处理的应用程序服务器。这层交互以经由数据的基础上或一些外部程序数据层。

  • Data - 此层由数据库或任何的数据来源。

使用Node创建Web服务器

Node.js提供了可以用于创建任何HTTP服务器的客户端的HTTP模块。以下是HTTP服务器的最低限度的结构,它会在8081端口侦听。

创建一个js文件名为server.js:

File: server.js

var http = require('http');
var fs = require('fs');
var url = require('url');

// Create a server
http.createServer( function (request, response) {
   // Parse the request containing file name
   var pathname = url.parse(request.url).pathname;

   // Print the name of the file for which request is made.
   console.log("Request for " + pathname + " received.");

   // Read the requested file content from file system
   fs.readFile(pathname.substr(1), function (err, data) {
      if (err) {
         console.log(err);
         // HTTP Status: 404 : NOT FOUND
         // Content Type: text/plain
         response.writeHead(404, {'Content-Type': 'text/html'});
      }else{
         //Page found
         // HTTP Status: 200 : OK
         // Content Type: text/plain
         response.writeHead(200, {'Content-Type': 'text/html'});	

         // Write the content of the file to response body
         response.write(data.toString());
      }
      // Send the response body
      response.end();
   });
}).listen(8081);

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

接下来,让我们创建以下名为index.html的HTML文件在创建server.js的同一目录下

File: index.html

<html>
<head>
<title>Sample Page</title>
</head>
<body>
Hello World!
</body>
</html>

现在让我们运行server.js看到的结果:

$ node server.js

验证输出

Server running at http://127.0.0.1:8081/

请求Node.js服务器

在任何浏览器中打开http://127.0.0.1:8081/index.html,看看下面的结果。

Node.js Web模块

验证服务器端输出。

Server running at http://127.0.0.1:8081/
Request for /index.html received.

使用Node创建Web客户端

Web客户端可以使用HTTP模块创建。让我们来看看下面的例子。

创建一个js文件名为client.js:

File: client.js

var http = require('http');

// Options to be used by request
var options = {
   host: 'localhost',
   port: '8081',
   path: '/index.html'
};

// Callback function is used to deal with response
var callback = function(response){
   // Continuously update stream with data
   var body = '';
   response.on('data', function(data) {
      body += data;
   });

   response.on('end', function() {
      // Data received completely.
      console.log(body);
   });
}
// Make a request to the server
var req = http.request(options, callback);
req.end();

现在运行不同的命令终端运行client.js看到结果

$ node client.js

验证输出。

<html>
<head>
<title>Sample Page</title>
</head>
<body>
Hello World!
</body>
</html>

验证服务器端输出。

Server running at http://127.0.0.1:8081/
Request for /index.html received.

标签:Node    js    Web模块

本站文章除注明转载外,均为本站原创或编译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创优秀实例教程
转载请注明:文章转载自:易百教程 [http:/www.yiibai.com]
本文标题:Node.js Web模块
本文地址:http://www.yiibai.com/nodejs/nodejs_web_module.html