尽管我很了解JavaScript,但我还是不明白Node.js生态系统中的这三个项目到底是做什么的。是不是有点像《Rails’Rack》?有人能解释一下吗?


Connect为常见的HTTP服务器功能(如会话管理、身份验证、日志记录等)提供了“更高级别”的api。Express是建立在具有高级功能(类似Sinatra)的Connect之上的。


[更新:从4.0版本开始,Express不再使用Connect。]但是,Express仍然与为Connect编写的中间件兼容。我的原始答案如下。

我很高兴你问了这个问题,因为对于那些使用Node.js的人来说,这绝对是一个常见的困惑点。下面是我最好的解释:

Node.js itself offers an http module, whose createServer method returns an object that you can use to respond to HTTP requests. That object inherits the http.Server prototype. Connect also offers a createServer method, which returns an object that inherits an extended version of http.Server. Connect's extensions are mainly there to make it easy to plug in middleware. That's why Connect describes itself as a "middleware framework," and is often analogized to Ruby's Rack. Express does to Connect what Connect does to the http module: It offers a createServer method that extends Connect's Server prototype. So all of the functionality of Connect is there, plus view rendering and a handy DSL for describing routes. Ruby's Sinatra is a good analogy. Then there are other frameworks that go even further and extend Express! Zappa, for instance, which integrates support for CoffeeScript, server-side jQuery, and testing.

这里有一个关于“中间件”含义的具体例子:开箱即用,上面没有一个为您提供静态文件。但只要加上连接。static (Connect附带的中间件),配置为指向一个目录,您的服务器将提供对该目录中的文件的访问。注意,Express也提供Connect的中间件;表达。Static和connect.static是一样的。(直到最近,两者都被称为staticProvider。)

我的印象是,现在大多数“真正的”Node.js应用都是用Express开发的;它添加的功能非常有用,如果你想要,所有低级功能仍然存在。


node . js

Node.js是服务器端的javascript马达。 除了js的所有功能外,它还包括网络功能(如HTTP)和对文件系统的访问。 这与客户端js不同,在客户端js中,网络任务由浏览器独占,出于安全原因禁止访问文件系统。

Node.js作为web服务器:express

运行在服务器上,理解HTTP并可以访问文件的东西听起来像web服务器。但它不是。 为了使node.js像web服务器一样工作,必须对其进行编程:处理传入的HTTP请求并提供适当的响应。 这就是Express所做的:它是一个用js实现的web服务器。 因此,实现一个网站就像配置快速路线,并编程网站的特定功能。

中间件和连接

为页面提供服务涉及到许多任务。这些任务中有许多是众所周知且非常常见的,因此node的Connect模块(可在node下运行的众多模块之一)实现了这些任务。 查看当前令人印象深刻的产品:

logger request logger with custom format support csrf Cross-site request forgery protection compress Gzip compression middleware basicAuth basic http authentication bodyParser extensible request body parser json application/json parser urlencoded application/x-www-form-urlencoded parser multipart multipart/form-data parser timeout request timeouts cookieParser cookie parser session session management support with bundled MemoryStore cookieSession cookie-based session support methodOverride faux HTTP method support responseTime calculates response-time and exposes via X-Response-Time staticCache memory cache layer for the static() middleware static streaming static file server supporting Range and more directory directory listing middleware vhost virtual host sub-domain mapping middleware favicon efficient favicon server (with default icon) limit limit the bytesize of request bodies query automatic querystring parser, populating req.query errorHandler flexible error handler

Connect是框架,通过它你可以选择你需要的(子)模块。 Contrib Middleware页面列举了一长串其他中间件。 Express本身带有最常见的Connect中间件。

怎么办呢?

安装node . js。 Node自带npm,节点包管理器。 命令npm install -g express将全局下载并安装express(查看express指南)。 在命令行中(而不是在节点中)运行express foo将创建一个名为foo的准备运行的应用程序。切换到它的(新创建的)目录,并使用node <appname>命令运行它,然后打开http://localhost:3000并查看。 现在你成功了。


公认的答案已经过时了(现在也是错误的)。以下是基于Connect (3.0) / Express(4.0)当前版本的信息(附源代码)。

Node.js自带什么

http / https createServer只需要一个回调(req,res)。

var server = http.createServer(function (request, response) {

    // respond
    response.write('hello client!');
    response.end();

});

server.listen(3000);

连接增加了什么

中间件基本上是位于应用程序代码和一些低级API之间的任何软件。Connect扩展了内置的HTTP服务器功能,并添加了一个插件框架。插件充当中间件,因此connect是一个中间件框架

它的实现方式非常简单(实际上代码非常短!)。当你调用var connect = require('connect');Var app = connect();你得到一个功能应用程序,可以:

可以处理请求并返回响应。这是因为你基本上得到了这个函数 有一个成员函数.use (source)来管理插件(因为这一行简单的代码来自这里)。

因为1.)你可以做以下事情:

var app = connect();

// Register with http
http.createServer(app)
    .listen(3000);

结合2.)得到:

var connect = require('connect');

// Create a connect dispatcher
var app = connect()
      // register a middleware
      .use(function (req, res, next) { next(); });

// Register with http
http.createServer(app)
    .listen(3000);

Connect提供了一个实用函数来向http注册自己,这样你就不需要调用http. createserver (app)了。它被称为listen,代码简单地创建了一个新的http服务器,将connect注册为回调并将参数转发给http.listen。从源

app.listen = function(){
  var server = http.createServer(this);
  return server.listen.apply(server, arguments);
};

所以,你可以:

var connect = require('connect');

// Create a connect dispatcher and register with http
var app = connect()
          .listen(3000);
console.log('server running on port 3000');

这还是你的http。带有插件框架的createServer。

ExpressJS增加了什么

ExpressJS和connect是并行项目。Connect只是一个中间件框架,具有很好的使用功能。Express不依赖于Connect(参见package.json)。然而,它做的一切连接,即:

可以像connect一样注册createServer,因为它也是一个可以接受req/res对的函数(源)。 一个用来注册中间件的use函数。 一个实用程序监听函数将自己注册到http

除了connect提供的功能(表示副本)之外,它还有许多其他特性。如。

具有视图引擎支持。 路由器有顶级动词(get/post等)。 具有应用程序设置支持。

共享中间件

ExpressJS和connect的使用功能是兼容的,因此中间件是共享的。两者都是中间件框架,express不仅仅是一个简单的中间件框架。

你应该使用哪一个?

我的观点是:基于上述,你已经得到了足够的信息来做出自己的选择。

使用http。如果你从头开始创建connect / expressjs之类的东西,请创建createServer。 如果你正在编写中间件,测试协议等,请使用connect,因为它是http.createServer之上的一个很好的抽象 如果你正在编写网站,请使用ExpressJS。

大多数人应该只使用ExpressJS。

公认的答案有什么问题

在某些时候,这些可能是正确的,但现在是错误的:

它继承了http的扩展版本。服务器

错了。它没有延伸,正如你所看到的……使用它

Express对Connect的作用与Connect对http模块的作用相同

Express 4.0甚至不依赖于连接。查看当前包。Json依赖项部分


Node.js本身提供了一个HTTP模块,其createServer方法返回一个对象,您可以使用该对象响应HTTP请求。该对象继承了http。服务器原型。


相关信息,特别是如果您正在使用NTVS与Visual Studio IDE一起工作。NTVS将NodeJS和Express工具,脚手架,项目模板添加到Visual Studio 2012, 2013。

此外,将ExpressJS或Connect作为“WebServer”调用的措辞是不正确的。您可以使用或不使用它们来创建一个基本的WebServer。一个基本的NodeJS程序也可以使用http模块来处理http请求,从而成为一个基本的web服务器。


愚蠢的简单答案

Connect和Express是nodejs的web服务器。与Apache和IIS不同,它们都可以使用相同的模块,称为“中间件”。


middleware as the name suggests actually middleware is sit between middle.. middle of what? middle of request and response..how request,response,express server sit in express app in this picture you can see requests are coming from client then the express server server serves those requests.. then lets dig deeper.. actually we can divide this whole express server's whole task in to small seperate tasks like in this way. how middleware sit between request and response small chunk of server parts doing some particular task and passed request to next one.. finally doing all the tasks response has been made.. all middle ware can access request object,response object and next function of request response cycle..

这是一个很好的例子来解释中间件在表达YouTube视频中间件