https://youtu.be/59cTR8_oQ7w

To start off, we're just going to set up Helmet on our project. Be careful with versions, and ensure you use the version used in this video (3.23.3) to make the tests pass.

Solution

Run the following commands in the Glitch Terminal to install helmet:

npm intall [email protected]
refresh

Then require it in myApp.js as helmet

let helmet = require('helmet')

Concepts