--- id: 587d8247367417b2b2512c36 title: Install and Require Helmet challengeType: 2 --- ## Description
As a reminder, this project is being built upon the following starter project on Glitch, or cloned from GitHub. Helmet helps you secure your Express apps by setting various HTTP headers.
## Instructions
Install the Helmet package, then require it.
## Tests
```yml tests: - text: '"helmet" dependency should be in package.json' testString: getUserInput => $.get(getUserInput('url') + '/_api/package.json').then(data => { var packJson = JSON.parse(data); assert.property(packJson.dependencies, 'helmet'); }, xhr => { throw new Error(xhr.responseText); }) ```
## Challenge Seed
## Solution
```js // solution required ```