Skip to content
visionmedia edited this page Feb 6, 2012 · 2 revisions

This roadmap is a WIP and does not represent any final decisions.

Connect

Connect 3.x will likely serve as a collection of high-quality, fully tested modules, and not provide any concept of "middleware", aka .use() etc, this would then become the responsibility of Express. For example when used with a regular node http server:

var send = connect.static(root);
http.createServer(function(req, res){
  send(req.url, function(err){
    // handle errors
  });
});

Clone this wiki locally