forked from expressjs/express
-
Notifications
You must be signed in to change notification settings - Fork 0
4.x roadmap
visionmedia edited this page Feb 6, 2012
·
10 revisions
This roadmap is a WIP and does not represent any final decisions.
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. The middleware system 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
});
});