static (simpler and faster) variant of connect-cachify middleware
Adds Cache-Control: max-age=31536000
header to all requests with 'cachified' prefix. Prefix is
based on the file content and calculated for all files during application startup (which means that
it won't handle dynamically generated files).
If you reference cachifieable resources from CSS files you probably also want to use postcss-cachify.
$ npm install connect-cachify-static
match
- regular expression that determines which files inroot
will be cachified, if omitted the usual suspects are included.js
,.css
,.png
,.jpg
, and.gif
control_headers
- if truthy, the middleware will stripETag
andLast-Modified
headers from the responseformat
- function that creates cachified version of the URL - allowed values are'path'
,'name'
, or the function that takespath
andhash
and creates cachified version of the file URL
cachify
function is injected in res.locals and thus can be accessed from the template code.
cachify
and filter
can be also retrieved by calling await helpers()
on the initialized middleware instance
path
- URL of the resource to be cachifiedintegrity
- optional - if truthy cachify will generate a tuple{ path, integrity }
, which can be used to format<script>
and<link>
elements with subresource integrity support
It should be called when generating HTML, CSS etc., in order to create a 'cachified' URL for the
resource. cachify
will replace /path/to/the/file
with cachified version incorporating reasonably unique {prefix}
generated based on the file content.
The specific format of the cachified version depends on the format
parameter:
-
path
default/path/to/the/file
->/{prefix}/path/to/the/file
-
name
/path/to/the/file
->/path/to/the/{prefix}- file
You can also pass a format function:
// this is how default format is implemented
function format(path, prefix) {
return '/' + prefix + path;
}
Since using cachify
will make the browsers to cache the resource for approximately 1 year we need
to bust the cache whenever the resource content changes.
head
//- styles
link(rel="stylesheet", href=cachify('/css/style.css'), media="screen")
link(rel="stylesheet", href=cachify('/css/print.css'), media="print")
body
// can be used to pass cachified URLs to client scripts
#info(data-icon=cachify('/img/icon.png'))
//- scripts
script(src=cachify('/script/main.js'), defer)
//- scripts with SRI support
- var c = cachify('/script/main.js', true)
script(src=c.path, integrity=c.integrity, crossorigin='anonymous', defer)
returns an array of cachified paths matching pattern
var connect = require('connect');
var cachifyStatic = require('connect-cachify-static');
connect()
.use(cachifyStatic(__dirname + '/public'), {
match: /\.js$/ // only javascript files
})
// need static to actually serve the file
connect()
.use(connect.static(__dirname + '/public'))
MIT