-
Notifications
You must be signed in to change notification settings - Fork 369
Helmet 4 upgrade guide
Several things were changed in Helmet 4. This document aims to help some common ones.
npm install helmet@4
should upgrade your installation of Helmet to version 4.
If you had previously installed @types/helmet
, they are no longer needed, as TypeScript types are now bundled with Helmet.
If you're using Node <10 (such as Node 8), Helmet may not work for you. You should upgrade anyway, because Node 8 reached end-of-life at the end of 2019.
Three middlewares were removed from Helmet in version 4:
-
helmet.featurePolicy
was removed because theFeature-Policy
header has been deprecated. If you still need it, use thefeature-policy
package, which is still maintained by the Helmet organization. -
helmet.hpkp
was removed because thePublic-Key-Pins
header has been deprecated. If you still need it, use thehpkp
npm package, which is still maintained by the Helmet organization. -
helmet.noCache
was removed because it isn't directly relevant to security. If you still need it, use thenocache
npm package, which is still maintained by the Helmet organization.
The Content-Security-Policy
middleware had the biggest changes.
It's common to want to change your CSP on a per-request basis, often to use nonces. In Helmet 3, you could supply functions as directive values, but this is not supported in Helmet 4.
See this section of the "Conditionally using middleware" guide to see how to do this now. Though a little more verbose, it allows you to do any kind of conditional logic you wish.
The CSP middleware used to do browser sniffing in an attempt to set the best CSP for the given browser. For example, old versions of Safari used the X-Webkit-CSP
header instead of Content-Security-Policy
. This was removed because it was brittle, slow, and unnecessary for modern browsers.
This means that a few options were removed: browserSniff
, disableAndroid
, and setAllHeaders
.
If you want to set legacy headers, see the guide "Setting legacy Content Security Policy headers in Helmet 4".