At times during development, it would be really nice to prevent HTTP 304 responses (in favor of 200\'s), and cause the Connect/Express static middleware to read every r
I get 200 responses by doing this during development :
var express = require('express'); app = express(); app.use(function(req, res, next) { req.headers['if-none-match'] = 'no-match-for-this'; next(); });