Skip to content

Instantly share code, notes, and snippets.

@dphurley
Created September 25, 2017 19:27
Show Gist options
  • Save dphurley/a240f4a29718153129683bce814903d6 to your computer and use it in GitHub Desktop.
Save dphurley/a240f4a29718153129683bce814903d6 to your computer and use it in GitHub Desktop.
const express = require('express')
const router = express.Router()
router.get('/', (request, response) => {
response.send('I work!')
})
module.exports = router
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment