Skip to content

Instantly share code, notes, and snippets.

@aofleejay
Created July 29, 2017 08:16
Show Gist options
  • Save aofleejay/3aecf564050e5508884e8e54a8a309ae to your computer and use it in GitHub Desktop.
Save aofleejay/3aecf564050e5508884e8e54a8a309ae 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