Skip to content

Instantly share code, notes, and snippets.

@sgnl
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sgnl/63ada18ceab068ae3f81 to your computer and use it in GitHub Desktop.
Save sgnl/63ada18ceab068ae3f81 to your computer and use it in GitHub Desktop.
Weekend Homework

Goal

Creating an Express server (don't auto-generate). Add routes based on the specs provided below. Some routes have additional requirements for features.

Test your server's routes with an application like POSTMAN or with the curl command from the terminal.

Server Specs

Modules

  • some JS server
  • something to parse data that will be posted to the server
  • something to handle sessions
  • a templating engine

Calculator Routes

  • /add/34/67 -> 34 + 67 = 101
    • displays the results template [X + Y = Z]
    • /divide/81/9 -> 81 / 9 = 9
      • displays the results template [X / Y = Z]
    • same for subtract and multiply
      • results template is reused for each calculation route
    • Validation middleware
      • all routes must have 2 numbers. e.g. a POST to /add/3/ should return a 422 status code with a message saying that another number is needed in order to run the operations.

Root Route and Questionaire

  • A generic welcome message, "Welcome, Human"
  • Should have a form that asks for someone's name and favorite movie (or any other question you'd like)
    • form should POST to a route

      • this route will keep track of each person's name and their answer to the question.
    • The user's session should store the users name

      • when a user returns to the / route it will say 'Welcome Back, [name]'
    • There should be a route where you can find a user's answer to the question

      • For Example, "Ray posted an answer to the question: 'what is your favorite movie' which is 'Elevator To The Gallows'", if you go to the route /favorite-movie/ray/ it render a template that says, 'Ray's favorite movie is: Elevator To The Gallows'. The name after /favorite-movie/:user/ help this route be dynamic.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment