I tried the following, but the expiration is set to 1 minute:
app.get(['/css/*','/js/*'],express.static('public',{maxAge:7*86400000}));
app.get(['/fonts/*'],express.static('public',{maxAge:30*86400000}));
How do set the expiration time using ExpressJS? In the code above, I tried setting the expiration time to 1 week and 1 month respectively.
I tried the following, but the expiration is set to 1 minute:
app.get(['/css/*','/js/*'],express.static('public',{maxAge:7*86400000}));
app.get(['/fonts/*'],express.static('public',{maxAge:30*86400000}));
How do set the expiration time using ExpressJS? In the code above, I tried setting the expiration time to 1 week and 1 month respectively.
Share Improve this question asked Jul 23, 2015 at 6:25 Leo JiangLeo Jiang 26.3k59 gold badges177 silver badges328 bronze badges 1-
1
Something like
app.get('/*', function (req, res, next) { if (req.url.indexOf("/js/") === 0 || req.url.indexOf("/fonts/") === 0) { res.setHeader("Cache-Control", "public, max-age=2592000"); res.setHeader("Expires", new Date(Date.now() + 2592000000).toUTCString()); } next(); });
– Swaraj Giri Commented Jul 23, 2015 at 6:27
2 Answers
Reset to default 11You use Express static, and it's perfecly fine, it's rather powerfull tool to serve static files.
express.static is the only built-in middleware in Express. It is based on serve-static, and is responsible for serving the static assets of an Express application.
Besides maxage support it also supports ETags.
Just use it this way:
app.use(express.static(__dirname + '/public', { maxAge: '1d' }));
Here is the very good explanation.
Use https://github./expressjs/serve-static
Example:
var express = require('express')
var serveStatic = require('serve-static')
var app = express()
app.get(['/css/*','/js/*'],express.static('public',{maxAge:7*86400000}));
app.get(['/fonts/*'],express.static('public',{maxAge:30*86400000}));
function setCustomCacheControl(res, path) {
if (serveStatic.mime.lookup(path) === 'text/html') {
// Custom Cache-Control for HTML files
res.setHeader('Cache-Control', 'public, max-age=0')
}
}
app.use(serveStatic(__dirname + '/public/css/', {
maxAge: '7d',
setHeaders: setCustomCacheControl
}))
app.use(serveStatic(__dirname + '/public/js/', {
maxAge: '7d',
setHeaders: setCustomCacheControl
}))
app.use(serveStatic(__dirname + '/public/fonts/', {
maxAge: '30d',
setHeaders: setCustomCacheControl
}))
app.listen(3000)