Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created November 18, 2019 08:41
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 tsh-code/19440df92279d5a4bd0ce13366fd157e to your computer and use it in GitHub Desktop.
Save tsh-code/19440df92279d5a4bd0ce13366fd157e to your computer and use it in GitHub Desktop.
Typical REST endpoint
router.post('/users', (req, res) => {
const users = [];
res
.status(200)
.json(users)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment