Files
familyARK/familyark/app/node_modules/dns-prefetch-control
Gustavo Adolfo Mesa Roldán 09924eb01c Show dino
2020-04-01 23:50:42 +02:00
..
2019-11-28 20:40:02 +00:00
2019-11-28 20:40:02 +00:00
2019-11-28 20:40:02 +00:00
2020-04-01 23:50:42 +02:00
2019-11-28 20:40:02 +00:00

DNS prefetch control header for Express

Build Status

This middleware lets you set the X-DNS-Prefetch-Control to control browsers' DNS prefetching. Read more about it on MDN and on Chromium's docs.

Usage:

const dnsPrefetchControl = require('dns-prefetch-control')

// Set X-DNS-Prefetch-Control: off
app.use(dnsPrefetchControl())

// Set X-DNS-Prefetch-Control: off
app.use(dnsPrefetchControl({ allow: false }))

// Set X-DNS-Prefetch-Control: on
app.use(dnsPrefetchControl({ allow: true }))