Git Product home page Git Product logo

Comments (6)

dougwilson avatar dougwilson commented on May 17, 2024 51

That is a good question :) There are two main methods for doing this:

Method 1

You keep your js/css/images/etc. in different sub folders. For example, perhaps you keep everything in public/, except your html files are in public/templates/. In this case, you can split it by path:

var serveStatic = require('serve-static')

app.use('/templates', serveStatic(__dirname + '/public/templates', { maxAge: 0 }))
app.use(serveStatic(__dirname + '/public'), { maxAge: '1y' })

Method 2

Your files are all inter-mingled and you want to apply the 0 max age to all files that are text/html. In this case, you need to add a header setting filter:

var mime = require('mime-types')
var serveStatic = require('serve-static')

app.use(serveStatic(__dirname + '/public', {
  maxAge: '1y',
  setHeaders: function (res, path) {
    if (mime.lookup(path) === 'text/html') {
      res.setHeader('Cache-Control', 'public, max-age=0')
    }
  }
}))

from serve-static.

rodrigoreis22 avatar rodrigoreis22 commented on May 17, 2024 1

I tried what you said @dougwilson , but the last one is the one getting set:

var oneDay = 86400000;
app.use('/dist/fonts', express.static(__dirname + '/dist/fonts', { maxAge : oneDay*30 })); //30 days
app.use('/dist/images', express.static(__dirname + '/dist/images', { maxAge : oneDay*30 })); //30 days
app.use('/dist/scripts', express.static(__dirname + '/dist/scripts', { maxAge : oneDay*30 })); //30 days
app.use('/dist/components', express.static(__dirname + '/dist/components', { maxAge : oneDay*30 })); //30 days
app.use('/dist/styles', express.static(__dirname + '/dist/styles', { maxAge : oneDay*30 })); //30 days
app.use('/dist/views', express.static(__dirname + '/dist/views', { maxAge : oneDay }));
app.use(express.static(__dirname + '/dist', { maxAge: 9000000 })); //15 min (index.html)

All my resources are with max-age=9000 (last line). What am I missing? @gfaceless it worked for you?

from serve-static.

gfaceless avatar gfaceless commented on May 17, 2024

Exactly what I want.
thank you very much :D

from serve-static.

dougwilson avatar dougwilson commented on May 17, 2024

Unless your URLs are http://127.0.0.1/dist/fonts/blah.woff, then you should not have /dist/ in the URL part of app.use.

from serve-static.

rodrigoreis22 avatar rodrigoreis22 commented on May 17, 2024

That's true @dougwilson , my bad. sorry.

from serve-static.

passivedragon avatar passivedragon commented on May 17, 2024

running the first suggestion now results in a type error.

TypeError: Router.use() requires a middleware function but got a Object
at
\node_modules\express\lib\router\index.js:458 throw new TypeError('Router.use() requires a middleware function but got a ' + gettype(fn))
I'm unsure how to adapt this.

from serve-static.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.