I am using Nodejs and Express Js. Also I add NowJS to the Express Js to do some real-time stuffs.
In the configuration file I have
app.configure(\'pr
EDIT: I was wrong, see eug's comment below
Connect includes caching middleware: http://senchalabs.github.com/connect/middleware-staticCache.html
so it should be as easy as
app.use(express.cache(...)); app.use(express.static(...));