Project: Message board
Introduction
Let's take a quick break from the main Express tutorial to practice what we've already learned. At this point you should know enough to use Express to make some fun interactive web apps! We're going to create a super simple message board.
Assignment
Use
express-generator
to set up a basic project using whichever templating language you prefer. If you want, you can set it all up manually -- it doesn't really take that much longer.Hint: here are links to some of the more popular templating language docs: PUG, EJS, Handlebars
We are going to have 2 routes, the index (
"/"
) and a new-message form ("/new"
). The generator already created a router for our index, so find that file and open it up. It can be found atroutes/index.js
. There is already arouter.get()
method for"/"
that should be rendering your index view, so lets add some messages to it.Create an array at the top of your index router called
messages
and put a couple of sample messages inside of it like this:Next, in your index template (in the
"views"
folder) loop through the messages array using whichever templating language you selected and for each one, display the user, text and the date the message was added. Don't forget to make your messages available to your template by including it in the res.render 'locals' object (e.g.res.render('index', { title: "Mini Messageboard", messages: messages })
).Next let's set up the new message form. In the router add a
router.get()
for the"/new"
route and point it to a template named"form"
. In the views directory create yourform
template. Add a heading, 2 inputs (one for the author's name and one for the message text) and a submit button. To have the form make a network request you will need to define it with both a method and an action like so:With your form set up like this, when you click on the submit button it should send a POST request to the url specified by the action attribute, so go back to your index router and add a
router.post()
for"/new"
.In order to get and use the data from your form, you will need to access the contents of your form inside
router.post()
as an object calledreq.body
. The individual fields inside the body object are named according to thename
attribute on your inputs (the value of<input name="messageText">
will show up asreq.body.messageText
inside therouter.post
function).In your
router.post()
take the contents of the form submission and push them into the messages array as an object that looks something like this:At the end of the
router.post()
function useres.redirect('/')
to send users back to the index page after submitting a new message.At this point, you should be able to visit
/new
(it might be a good idea to add a link to that route on your index page), fill out the form, submit it and then see it show up on the index page!Now you're almost ready to deploy your application on Heroku, but before doing that, you need to modify a few things just to make life easier for your deployment. First, you need to specify the exact version of Node that you're using in your
package.json
file; if you don't remember the version number, just find it usingnode -v
. Then, add it to yourpackage.json
file, so that it will look similar to this:Heroku usually requires a
Procfile
, which specifies all the commands that need to run on startup. With node.js, this file isn't obligatory since Heroku searches in thepackage.json
file for a start script which is already defined in your app, but it's still good practice to add it to your project. Create it in your root directory, and add this single line to it:You're finally ready to deploy to Heroku! You can first try it on local, using
This will run your app locally using Heroku at http://localhost:5000/. Test it, and if everything works fine, you can finally create it and push it to your Heroku repository with:
Last updated