Skip to content

Instantly share code, notes, and snippets.

@aofleejay
Created July 29, 2017 08:30
Show Gist options
  • Save aofleejay/ae593e6d79eae45cf04695f8d01607ce to your computer and use it in GitHub Desktop.
Save aofleejay/ae593e6d79eae45cf04695f8d01607ce to your computer and use it in GitHub Desktop.
Get book with specific id
app.get('/books/:id', (req, res) => {
res.json(books.find(book => book.id === req.params.id))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment