Skip to content

Instantly share code, notes, and snippets.

@kianaditya
Created June 15, 2020 09:55
Show Gist options
  • Save kianaditya/0075daaa910b8579ab92e2b028cac111 to your computer and use it in GitHub Desktop.
Save kianaditya/0075daaa910b8579ab92e2b028cac111 to your computer and use it in GitHub Desktop.
express medium article part 1
// /routes/posts.js
const express = require('express')
const router = express.Router()
router.get('/', (req, res, next) => {
res.send('You have hit GET /posts endpoint')
})
module.exports = router
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment