Node.js – how to add expires header to favicon.ico in Node.js / Express

expires-headerexpressfaviconnode.js

In Express I add expires headers to my static files like this

app.use(function (req, res, next) {

    // static folder: css
    if (req.url.indexOf('/css/') === 0) {
        res.setHeader('Cache-Control', 'public, max-age=345600'); // 4 days
        res.setHeader('Expires', new Date(Date.now() + 345600000).toUTCString());
    }

});

app.use(express.static(root + '/app'));

What I cannot do is catch the favicon.ico request like this.

Is there a way to add expires header to favicon in Node/Express?
What makes the favicon.ico request so different compared to other static files?

Thx!

Best Answer

You can pass a maxAge option to both favicon and static middleware :

app.use(express.favicon(__dirname + '/public/favicon.ico', { maxAge: 2592000000 }));

Sources :

  1. https://groups.google.com/forum/?fromgroups#!topic/express-js/W5mkAorVrW8
  2. http://www.senchalabs.org/connect/favicon.html