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 response from the filesystem, rather than do any caching at all.
I have tried playing with maxAge
values of 0 and 1, to no avail:
app.use(express.static(__dirname + '/public', { maxAge: 1 }))