From 469b6595b8a42a454a500cc32935767711992a91 Mon Sep 17 00:00:00 2001
From: Tom <20648924+moT01@users.noreply.github.com>
Date: Mon, 11 Feb 2019 14:27:33 -0600
Subject: [PATCH] Fill in stub for "Install and require helmet" (#34100)
---
.../install-and-require-helmet/index.md | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/install-and-require-helmet/index.md b/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/install-and-require-helmet/index.md
index cb9c458bd4..2f3c06a608 100644
--- a/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/install-and-require-helmet/index.md
+++ b/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/install-and-require-helmet/index.md
@@ -3,8 +3,17 @@ title: Install and Require Helmet
---
## Install and Require Helmet
-This is a stub. Help our community expand it.
+For this series of lessons, it's easiest to clone the glitch boilerplate project and follow the instructions there.
+In this challenge you need to add and require helmet to your project.
-This quick style guide will help ensure your pull request gets accepted.
+### Hint
-
+- You can search for packages on glitch somewhere when in your package.json file
+- After you add helmet, you need to require it in the myApp.js file
+
+### Solution
+
+- In the `package.json` file, click the `add package` button, search for `helmet`, and click it to add it to your project.
+- Then, go in to the `myApp.js` file and require it by adding `const helmet = require('helmet');` near the top of the file.
+
+**Note:** Be sure to submit the link to the **live demo** of your project.