diff --git a/seed/challenges/05-apis-and-microservices/api-and-microservice-projects.json b/seed/challenges/05-apis-and-microservices/api-and-microservice-projects.json
index 09ffae0cf4..56ae62fb6a 100644
--- a/seed/challenges/05-apis-and-microservices/api-and-microservice-projects.json
+++ b/seed/challenges/05-apis-and-microservices/api-and-microservice-projects.json
@@ -36,8 +36,9 @@
"id": "bd7158d8c443edefaeb5bdef",
"title": "Timestamp Microservice",
"description": [
- "Build a full stack JavaScript app that is functionally similar to this: https://curse-arrow.gomix.me/ on GoMix or on your own publicly accessible domain.",
- "Start by remixing this boilerplate GoMix project: https://gomix.com/#!/project/shimmer-ripper. Then get all the tests for the below user stories to pass."
+ "Build a full stack JavaScript app that is functionally similar to this: https://curse-arrow.gomix.me/.",
+ "Working on this project will involve you writing your code on Gomix on our starter project. After completing this project you can copy your public gomix url (to the homepage of your app) into this screen to test it! Optionally you may choose to write your project on another platform but it must be publicaly visible for our testing.",
+ "Start this project on Gomix using this link or clone this repository on GitHub! If you use Gomix, remember to save the link to your project somewhere safe!"
],
"challengeSeed": [],
"tests": [
@@ -71,8 +72,9 @@
"id": "bd7158d8c443edefaeb5bdff",
"title": "Request Header Parser Microservice",
"description": [
- "Build a full stack JavaScript app that is functionally similar to this: https://dandelion-roar.gomix.me/ on GoMix or on your own publicly accessible domain.",
- "Start by remixing this boilerplate GoMix project: https://gomix.com/#!/project/shimmer-ripper. Then get all the tests for the below user stories to pass."
+ "Build a full stack JavaScript app that is functionally similar to this: https://dandelion-roar.gomix.me/.",
+ "Working on this project will involve you writing your code on Gomix on our starter project. After completing this project you can copy your public gomix url (to the homepage of your app) into this screen to test it! Optionally you may choose to write your project on another platform but it must be publicaly visible for our testing.",
+ "Start this project on Gomix using this link or clone this repository on GitHub! If you use Gomix, remember to save the link to your project somewhere safe!"
],
"challengeSeed": [],
"tests": [
@@ -98,8 +100,9 @@
"id": "bd7158d8c443edefaeb5bd0e",
"title": "URL Shortener Microservice",
"description": [
- "Build a full stack JavaScript app that is functionally similar to this: https://thread-paper.gomix.me/ on GoMix or on your own publicly accessible domain.",
- "Start by remixing this boilerplate GoMix project: https://gomix.com/#!/project/shimmer-ripper. Then get all the tests for the below user stories to pass."
+ "Build a full stack JavaScript app that is functionally similar to this: https://thread-paper.gomix.me/.",
+ "Working on this project will involve you writing your code on Gomix on our starter project. After completing this project you can copy your public gomix url (to the homepage of your app) into this screen to test it! Optionally you may choose to write your project on another platform but it must be publicaly visible for our testing.",
+ "Start this project on Gomix using this link or clone this repository on GitHub! If you use Gomix, remember to save the link to your project somewhere safe!"
],
"challengeSeed": [],
"tests": [
@@ -133,8 +136,9 @@
"id": "bd7158d8c443edefaeb5bdee",
"title": "Exercise Tracker",
"description": [
- "Build a full stack JavaScript app that is functionally similar to this: https://fuschia-custard.gomix.me/ on GoMix or on your own publicly accessible domain.",
- "Start by remixing this boilerplate GoMix project: https://gomix.com/#!/project/fcc-message. Then get all the tests for the below user stories to pass."
+ "Build a full stack JavaScript app that is functionally similar to this: https://fuschia-custard.gomix.me/.",
+ "Working on this project will involve you writing your code on Gomix on our starter project. After completing this project you can copy your public gomix url (to the homepage of your app) into this screen to test it! Optionally you may choose to write your project on another platform but it must be publicaly visible for our testing.",
+ "Start this project on Gomix using this link or clone this repository on GitHub! If you use Gomix, remember to save the link to your project somewhere safe!"
],
"challengeSeed": [],
"tests": [
@@ -176,8 +180,9 @@
"id": "bd7158d8c443edefaeb5bd0f",
"title": "File Metadata Microservice",
"description": [
- "Build a full stack JavaScript app that is functionally similar to this: https://purple-paladin.gomix.me/ on GoMix or on your own publicly accessible domain.",
- "Start by remixing this boilerplate GoMix project: https://gomix.com/#!/project/shimmer-ripper. Then get all the tests for the below user stories to pass."
+ "Build a full stack JavaScript app that is functionally similar to this: https://purple-paladin.gomix.me/.",
+ "Working on this project will involve you writing your code on Gomix on our starter project. After completing this project you can copy your public gomix url (to the homepage of your app) into this screen to test it! Optionally you may choose to write your project on another platform but it must be publicaly visible for our testing.",
+ "Start this project on Gomix using this link or clone this repository on GitHub! If you use Gomix, remember to save the link to your project somewhere safe!"
],
"challengeSeed": [],
"tests": [
diff --git a/seed/challenges/05-apis-and-microservices/basic-node-and-express.json b/seed/challenges/05-apis-and-microservices/basic-node-and-express.json
index 9707782e8c..b4d627f082 100644
--- a/seed/challenges/05-apis-and-microservices/basic-node-and-express.json
+++ b/seed/challenges/05-apis-and-microservices/basic-node-and-express.json
@@ -13,6 +13,12 @@
"",
"Node.js is a JavaScript tool that allows developers to write backend (server-side) programs in JavaScript. Node.js comes with a handful of built-in modules—small, independent programs—that help facilitate this purpose. Some of the core modules include:
package.json
file. This file lists the package dependencies for your project. Since npm packages are regularly updated, the package.json
file allows you to set specific version numbers for each dependency. This ensures that updates to a package don't break your project.node_modules
. These packages can be installed in two ways:node_modules
folder, accessible by all projects.node_modules
folder, accessible only to that project.\"pug\": \"^0.1.0\"
",
"Now to tell Node/Express to use the templating engine you will have to tell your express app to set 'pug' as the 'view-engine'. app.set('view engine', 'pug')
",
- "Lastly, we should change our response to the request for the index route to res.render
with the path to the view views/pug/index.pug.",
+ "Lastly, you should change your response to the request for the index route to res.render
with the path to the view views/pug/index.pug.",
"If all went as planned, you should refresh your apps home page and see a small message saying you're successfully rending the Pug from our Pug file! Submit your page when you think you've got it right."
],
"challengeSeed": [],
@@ -58,6 +59,7 @@
"id": "5895f70bf9fc0f352b528e64",
"title": "Using a Template Engine's Powers",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"One of the greatest features of using a template engine is being able to pass variables from the server to the template file before rendering it to HTML.",
"In your Pug file, you're about to use a variable by referencing the variable name as #{variable_name}
inline with other text on an element or by using an equal side on the element without a space such as p= variable_name
which sets that p elements text to equal the variable.",
"We strongly recommend looking at the syntax and structure of Pug here on their Githubs README. Pug is all about using whitespace and tabs to show nested elements and cutting down on the amount of code needed to make a beautiful site.",
@@ -83,6 +85,7 @@
"id": "5895f70cf9fc0f352b528e65",
"title": "Setting up Passport",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"It's time to set up Passport so we can finally start allowing a user to register or login to an account! In addition to Passport, we will use Express-session to handle sessions. Using this middleware saves the session id as a cookie in the client and allows us to access the session data using that id on the server. This way we keep personal account information out of the cookie used by the client to verify to our server they are authenticated and just keep the key to access the data stored on the server.",
"To set up Passport for use in your project, you will need to add it as a dependency first in your package.json. \"passport\": \"^0.3.2\"
",
"In addition, add Express-session as a dependency now as well. Express-session has a ton of advanced features you can use but for now we're just going to use the basics! \"express-session\": \"^1.15.0\"
",
@@ -121,6 +124,7 @@
"id": "5895f70cf9fc0f352b528e66",
"title": "Serialization of a User Object",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"Serialization and deserialization are important concepts in regards to authentication. To serialize an object means to convert its contents into a small key essentially that can then be deserialized into the original object. This is what allows us to know whos communicated with the server without having to send the authentication data like username and password at each request for a new page.",
"To set this up properly, we need to have a serialize function and a deserialize function. In passport we create these with passport.serializeUser( OURFUNCTION )
and passport.dederializeUser( OURFUNCTION )
",
"The serializeUser is called with 2 arguments, the full user object and a callback used by passport. Returned in the callback should be a unique key to identify that user- the easiest one to use being the users _id in the object as it should be unique as it generated by MongoDb. Similarly deserializeUser is called with that key and a callback function for passport as well, but this time we have to take that key and return the users full object to the callback. To make a query search for a Mongo _id you will have to create const ObjectID = require('mongodb').ObjectID;
, and then to use it you call new ObjectID(THE_ID)
. Be sure to add MongoDB as a dependency. You can see this in the examples below:",
@@ -157,6 +161,7 @@
"id": "5895f70cf9fc0f352b528e67",
"title": "Implement the Serialization of a Passport User",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"Right now we're not loading an actually users object since we haven't set up our database. This can be done many different ways, but for our project we will connect to the database once when we start the server and keep a persistent connection for the full life-cycle of the app.",
"To do this, add MongoDB as a dependency and require it in your server. (const mongo = require('mongodb').MongoClient;
)",
"Now we want to the connect to our database then start listening for requests. The purpose of this is to not allow requests before our database is connected or if there is a database error. To accomplish you will want to encompass your serialization and your app listener in the following:",
@@ -185,6 +190,7 @@
"id": "5895f70df9fc0f352b528e68",
"title": "Authentication Strategies",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"A strategy is a way of authenticating a user. You can use a strategy for allowing users to authenticate based on locally saved information (if you have them register first) or from a variety of providers such as Google or Github. For this project we will set up a local strategy. To see a list of the 100's of strategies, visit Passports site here.",
"Add passport-local as a dependency and add it to your server as follows: const LocalStrategy = require('passport-local');
",
"Now you will have to tell passport to use an instantiated LocalStartegy object with a few settings defined. Make sure this as well as everything from this point on is encapsulated in the database connection since it relies on it! passport.use(new LocalStrategy(\n function(username, password, done) {\n db.collection('users').findOne({ username: username }, function (err, user) {\n console.log('User '+ username +' attempted to log in.');\n if (err) { return done(err); }\n if (!user) { return done(null, false); }\n if (password !== user.password) { return done(null, false); }\n return done(null, user);\n });\n }\n));This is defining the process to take when we try to authenticate someone locally. First it tries to find a user in our database with the username entered, then it checks for the password to match, then finally if no errors have popped up that we checked for, like an incorrect password, the users object is returned and they are authenticated.", @@ -212,6 +218,7 @@ "id": "5895f70df9fc0f352b528e69", "title": "Using Passport Strategies", "description": [ + "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.", "In the index.pug file supplied there is actually a login form. It has previously been hidden because of the inline javascript
if showLogin
with the form indented after it. Before showLogin as a variable was never defined, it never rendered the code block containing the form. Go ahead and on the res.render for that page add a new variable to the object showLogin: true
. When you refresh your page, you should then see the form! This form is set up to POST on /login so this is where we should set up to accept the POST and authenticate the user.",
"For this challenge you should add the route /login to accept a POST request. To authenticate on this route you need to add a middleware to do so before then sending a response. This is done by just passing another argument with the middleware before your function(req,res)
with your response! The middleware to use is passport.authenticate('local')
.",
"passport.authenticate can also take some options as an argument such as: { failureRedirect: '/' }
which is incredibly useful so be sure to add that in as well. As a response after using the middleware (which will only be called if the authentication middleware passes) should be to redirect the user to /profile and that route should render the view 'profile.pug'.",
@@ -240,6 +247,7 @@
"id": "5895f70df9fc0f352b528e6a",
"title": "Creating New Middleware",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"As in, any user can just go to /profile whether they authenticated or not by typing in the url. We want to prevent this by checking if the user is authenticated first before rendering the profile page. This is the perfect example of when to create a middleware.",
"The challenge here is creating the middleware function ensureAuthenticated(req, res, next)
, which will check if a user is authenticated by calling passports isAuthenticated on the request which in turn checks for req.user is to be defined. If it is then next() should be called, otherwise we can just respond to the request with a redirect to our homepage to login. An implementation of this middleware is:",
"function ensureAuthenticated(req, res, next) {\n if (req.isAuthenticated()) {\n return next();\n }\n res.redirect('/');\n};", @@ -268,6 +276,7 @@ "id": "5895f70ef9fc0f352b528e6b", "title": "Putting a Profile Together", "description": [ + "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.", "Now that we can ensure the user accessing the /profile is authenticated, we can use the information contained in 'req.user' on our page!", "Go ahead and pass the object containing the variable username equaling 'req.user.username' into the render method of the profile view. Then go to your 'profile.pug' view and add the line
h2.center#welcome Welcome, #{username}!
creating the h2 element with the class 'center' and id 'welcome' containing the text 'Welcome, ' and the username!",
"Also in the profile, add a link to /logout. That route will host the logic to unauthenticate a user. a(href='/logout') Logout
",
@@ -290,6 +299,7 @@
"id": "58965611f9fc0f352b528e6c",
"title": "Logging a User Out",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"Creating the logout logic is easy. The route should just unauthenticate the user and redirect to the home page instead of rendering any view.",
"In passport, unauthenticating a user is as easy as just calling req.logout();
before redirecting.",
"app.route('/logout')\n .get((req, res) => {\n req.logout();\n res.redirect('/');\n });", @@ -318,6 +328,7 @@ "id": "58966a17f9fc0f352b528e6d", "title": "Registration of New Users", "description": [ + "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.", "Now we need to allow a new user on our site to register an account. On the res.render for the home page add a new variable to the object passed along-
showRegistration: true
. When you refresh your page, you should then see the registration form that was already created in your index.pug file! This form is set up to POST on /register so this is where we should set up to accept the POST and create the user object in the database.",
"The logic of the registration route should be as follows: Register the new user > Authenticate the new user > Redirect to /profile",
"The logic of step 1, registering the new user, should be as follows: Query database with a findOne command > if user is returned then it exists and redirect back to home OR if user is undefined and no error occurs then 'insertOne' into the database with the username and password and as long as no errors occur then call next to go to step 2, authenticating the new user, which we've already written the logic for in our POST /login route.",
@@ -357,6 +368,7 @@
"id": "58a25c98f9fc0f352b528e7f",
"title": "Hashing your Passwords",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"Going back to the information security section you may remember that storing plaintext passwords is never okay. Now it is time to implement BCrypt to solve this issue.",
"password: req.body.password
. An easy way to implement saving a hash instead is to add the following before your database logic var hash = bcrypt.hashSync(req.body.password, 8);
and replacing the req.body.password
in the database saving with just password: hash
. (In our small scale app, it is fine to use sync hashing especially with a low cost of 8 as it wont block the thread very much at all)",
@@ -384,6 +396,7 @@
"id": "589690e6f9fc0f352b528e6e",
"title": "Clean Up Your Project with Modules",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"Right now everything you have is in your server.js file. This can lead to hard to manage code that isn't very expandable.",
"Create 2 new files: Routes.js and Auth.js",
"Both should start with the following code: module.exports = function (app, db) {\n\n\n}", @@ -414,8 +427,8 @@ [ "", "", - "OAuth 2.0 is the industry-standard authorization and is used across the internet for social login such as letting you login to freeCodeCamp with your Github account.
passport.authenticate('github')
which redirects them to Github.process.env.GITHUB_CLIENT_ID
. For this challenge we're going to use the Github strategy.",
"Obtaining your Client ID and Secret from Github is done in your account profile settings under 'developer settings', then 'OAuth applications'. Click 'Register a new application', name your app, paste in the url to your gomix homepage (Not the project code's url), and lastly for the callback url, paste in the same url as the homepage but with '/auth/github/callback' added on. This is where users will be redirected to for us to handle after authenticating on Github. Save the returned information as 'GITHUB_CLIENT_ID' and 'GITHUB_CLIENT_SECRET' in your .env file.",
@@ -458,6 +472,7 @@
"id": "589a69f5f9fc0f352b528e71",
"title": "Implementation of Social Authentication II",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"The last part of setting up your Github authentication is to create the strategy itself. For this, you will need to add the dependency of 'passport-github' to your project and require it as GithubStrategy like const GitHubStrategy = require('passport-github').Strategy;
.",
"To set up the Github strategy, you have to tell passport to use an instantiated GithubStrategy, which accepts 2 arguments: An object (containing clientID, clientSecret, and callbackURL) and a function to be called when a user is successfully authenticated which we will determine if the user is new and what fields to save initially in the user's database object. This is common across many strategies but some may require more information as outlined in that specific strategy's github README; for example, Google requires a scope as well which determines what kind of information your request is asking returned and asks the user to approve such access. The current strategy we are implementing has its usage outlined here, but we're going through it all right here on freeCodeCamp!",
"Here's how your new strategy should look at this point: passport.use(new GitHubStrategy({\n clientID: process.env.GITHUB_CLIENT_ID,\n clientSecret: process.env.GITHUB_CLIENT_SECRET,\n callbackURL: /*INSERT CALLBACK URL ENTERED INTO GITHUB HERE*/\n },\n function(accessToken, refreshToken, profile, cb) {\n console.log(profile);\n //Database logic here with callback containing our user object\n }\n));", @@ -489,6 +504,7 @@ "id": "589a8eb3f9fc0f352b528e72", "title": "Implementation of Social Authentication III", "description": [ + "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.", "The final part of the strategy is handling the profile returned from Github. We need to load the users database object if it exists or create one if it doesn't and populate the fields from the profile, then return the user's object. Github supplies us a unique id within each profile which we can use to search with to serialize the user with (already implemented). Below is an example implementation you can use in your project- it goes within the function that is the second argument for the new strategy, right below the
console.log(profile);
currently is:",
"db.collection('socialusers').findAndModify(\n {id: profile.id},\n {},\n {$setOnInsert:{\n id: profile.id,\n name: profile.displayName || 'John Doe',\n photo: profile.photos[0].value || '',\n email: profile.emails[0].value || 'No public email',\n created_on: new Date(),\n provider: profile.provider || ''\n },$set:{\n last_login: new Date()\n },$inc:{\n login_count: 1\n }},\n {upsert:true, new: true},\n (err, doc) => {\n return cb(null, doc.value);\n }\n);", "With a findAndModify, it allows you to search for an object and update it, as well as upsert the object if it doesn't exist and receive the new object back each time in our callback function. In this example, we always set the last_login as now, we always increment the login_count by 1, and only when we insert a new object(new user) do we populate the majority of the fields. Something to notice also is the use of default values. Sometimes a profile returned won't have all the information filled out or it will have been chosen by the user to remain private; so in this case we have to handle it to prevent an error.", @@ -514,8 +530,8 @@ [ "", "", - "Socket.IO enables real-time, reliable, speedy communication between your server and clients from all devices and browsers. It listens for connects on your server that come from the client which connects with a single javascript statement. The whole library is based on emitting, broadcasting, and recieving events that contain an event name and some data which can include things like strings, objects, arrays, and even blobs like files or video. This is used for all sorts of purposes including instant messaging online, real-time analytics, streaming, and document collaboration.
const io = require('socket.io')(http);
",
"The first thing needing to be handled is listening for a new connection from the client. The on keyword does just that- listen for a specific event. It requires 2 arguments: a string containing the title of the event thats emitted, and a function with which the data is passed though. In the case of our connection listener, we use socket to define the data in the second argument. A socket is an individual client who is connected.",
"For listening for connections on our server, add the following between the comments in your project:io.on('connection', socket => {\n console.log('A user has connected');\n});", @@ -590,6 +607,7 @@ "id": "589fc831f9fc0f352b528e75", "title": "Communicating by Emitting", "description": [ + "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.", "Emit is the most common way of communicating you will use. When you emit something from the server to 'io', you send an event's name and data to all the connected sockets. A good example of this concept would be emiting the current count of connected users each time a new user connects!", "
var currentUsers = 0;
",
"Now when someone connects you should increment the count before emiting the count so you will want to add the incrementer within the connection listener. ++currentUsers;
",
@@ -623,6 +641,7 @@
"id": "589fc831f9fc0f352b528e76",
"title": "Handling a disconnect",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"You may notice that up to now you have only been increasing the user count. Handling a user disconnecting is just as easy as handling the initial connect except the difference is you have to listen for it on each socket versus on the whole server.",
"socket.on('disconnect', () => { /*anything you want to do on disconnect*/ });
",
"To make sure clients continuously have the updated count of current users, you should decrease the currentUsers by 1 when the disconnect happens then emit the 'user count' event with the updated count!",
@@ -650,6 +669,7 @@
"id": "589fc831f9fc0f352b528e77",
"title": "Authentication with Socket.IO",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"Currently, you cannot determine who is connected to your web socket. While 'req.user' containers the user object, thats only when your user interacts with the web server and with web sockets you have no req (request) and therefor no user data. One way to solve the problem of knowing who is connected to your web socket is by parsing and decoding the cookie that contains the passport session then deserializing it to obtain the user object. Luckily, there is a package on NPM just for this that turns a once complex task into something simple!",
"io.use(passportSocketIo.authorize({\n cookieParser: cookieParser,\n key: 'express.sid',\n secret: process.env.SESSION_SECRET,\n store: sessionStore\n}));You can also optionally pass 'success' and 'fail' with a function that will be called after the authentication process completes when a client trys to connect.", @@ -681,6 +701,7 @@ "id": "589fc832f9fc0f352b528e78", "title": "Announcing New Users", "description": [ + "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.", "Many chat rooms are able to annouce when a user connects or disconnects and then display that to all of the connected users in the chat. Seeing as though you already are emitting an event on connect and disconnect, you will just have to modify this event to support such feature. The most logical way of doing so is sending 3 pieces of data with the event: name of the user connected/disconnected, the current user count, and if that name connected or disconnected.", "
io.emit('user', {name: socket.request.user.name, currentUsers, connected: true});
",
"Now your client will have all the nesesary information to correctly display the current user count and annouce when a user connects or disconnects! To handle this event on the client side we should listen for 'user' and then update the current user count by using jQuery to change the text of #num-users
to '{NUMBER} users online', as well as append a <li>
to the unordered list with id 'messages' with '{NAME} has {joined/left} the chat.'.",
@@ -708,6 +729,7 @@
"id": "589fc832f9fc0f352b528e79",
"title": "Sending and Displaying Chat Messages",
"description": [
+ "As a reminder, this project is being built upon the following starter project on Gomix, or cloned from GitHub.",
"It's time you start allowing clients to send a chat message to the server to emit to all the clients! Already in your client.js file you should see there is already a block of code handling when the messgae form is submitted! ($('form').submit(function(){ /*logic*/ });
)",
"#m
. The event should be named 'chat message' and the data should just be 'messageToSend'. socket.emit('chat message', messageToSend);
",
"Now on your server you should be listening to the socket for the event 'chat message' with the data being named 'message'. Once the event is recieved it should then emit the event 'chat message' to all sockets io.emit
with the data being an object containing 'name' and 'message'.",
diff --git a/seed/challenges/06-information-security-and-quality-assurance/information-security-with-helmetjs.json b/seed/challenges/06-information-security-and-quality-assurance/information-security-with-helmetjs.json
index 47dc81847d..df86e99a65 100644
--- a/seed/challenges/06-information-security-and-quality-assurance/information-security-with-helmetjs.json
+++ b/seed/challenges/06-information-security-and-quality-assurance/information-security-with-helmetjs.json
@@ -4,10 +4,30 @@
"time": "5 hours",
"helpRoom": "HelpBackend",
"challenges": [
+ {
+ "id": "58af07504bbe015e85a91dbd",
+ "title": "Information Security Introduction",
+ "description": [
+ [
+ "",
+ "",
+ "Working on these challenges will involve you writing your code on Gomix on our starter project. After completing each challenge you can copy your public gomix url (to the homepage of your app) into the challenge screen to test it! Optionally you may choose to write your project on another platform but it must be publicaly visible for our testing.