I\'m actually doing some load testing against an ExpressJS server, and I noticed that the response send by the server includes a \"Connection: Keep-Alive\" header. As far as
To set keepAliveTimeout on the express server do:
var express = require('express'); var app = express(); var server = app.listen(5001); server.keepAliveTimeout = 30000;