Skip to content

Instantly share code, notes, and snippets.

@budasuyasa
Created May 6, 2018 02:42
Show Gist options
  • Save budasuyasa/a735bd516d5a8cdee7564aa2d1d6e258 to your computer and use it in GitHub Desktop.
Save budasuyasa/a735bd516d5a8cdee7564aa2d1d6e258 to your computer and use it in GitHub Desktop.
medium-post-simple-rest-03
app.get('/book/', (req, res) => {
book.findAll().then(book => {
res.json(book)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment