Skip to content

Instantly share code, notes, and snippets.

@aofleejay
Created July 29, 2017 08:39
Show Gist options
  • Save aofleejay/55c317dd957bc139f410f0b5ae01b693 to your computer and use it in GitHub Desktop.
Save aofleejay/55c317dd957bc139f410f0b5ae01b693 to your computer and use it in GitHub Desktop.
Create route /books with method post
app.post('/books', (req, res) => {
books.push(req.body)
res.status(201).json(req.body)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment