Skip to content

Instantly share code, notes, and snippets.

@loopDelicious
Created May 15, 2020 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loopDelicious/73ad1d1a6afcc25ae0d99f3382888f60 to your computer and use it in GitHub Desktop.
Save loopDelicious/73ad1d1a6afcc25ae0d99f3382888f60 to your computer and use it in GitHub Desktop.
Create a `/spacetasks` route using the `GET` method to retrieve a list of chores for the space station
app.get("/spacetasks", (req, res, next) => {
res.json([
"wash the spaceship",
"clean the space kitchen",
"look at the stars",
"repair my space suit"
])
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment