Express 3 ルートで http.Server.connections を使用したいですか? もう手に入れる方法はありませんか?
app.set('server', server);
express.createServer() は廃止され、Express アプリケーションは http.Server から継承されなくなりました
var app = express(),
server = http.createServer(app);
server.listen(8080);
...
module.exports = function (app) {
app.get('/connections', function (req, res) {
res.send({
connections: app.connections
// app != http.Server in express 3
});
});
};