Skip to content

Instantly share code, notes, and snippets.

@sorskoot
Created March 7, 2017 15:16
Show Gist options
  • Save sorskoot/d61ad12ed78788e7adc848e7df057e91 to your computer and use it in GitHub Desktop.
Save sorskoot/d61ad12ed78788e7adc848e7df057e91 to your computer and use it in GitHub Desktop.
default users.js routing file
var express = require('express');
var router = express.Router();
/* GET users listing. */
router.get('/', function(req, res, next) {
res.send('respond with a resource');
});
module.exports = router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment