You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
app.use(connect_expires(0)) // expires immediately
app.use(connect_expires(1000 * 60 * 60 * 24 * 7)) // expires one week after last access
app.use(connect_expires(new Date('24 august 2014')) // expires on a specific date
...where subsequent calls would just override old calls, so that you could do:
Either as a standalone lib, or as a pull request into Connect or Express, ala:
http://developer.yahoo.com/performance/rules.html#expires
Perhaps with an API like this?
...where subsequent calls would just override old calls, so that you could do:
The text was updated successfully, but these errors were encountered: