Skip to content

Instantly share code, notes, and snippets.

@aofleejay
Created July 29, 2017 08:18
Show Gist options
  • Save aofleejay/f795ff355d235a53ed9c6ddc74af1eb1 to your computer and use it in GitHub Desktop.
Save aofleejay/f795ff355d235a53ed9c6ddc74af1eb1 to your computer and use it in GitHub Desktop.
Import db.json and create route /books with method get
const books = require('./db')
app.get('/books', (req, res) => {
res.json(books)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment