Skip to content

Instantly share code, notes, and snippets.

@dcalance
Created November 12, 2016 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcalance/ea6c35b669801975752fc4867b506ae9 to your computer and use it in GitHub Desktop.
Save dcalance/ea6c35b669801975752fc4867b506ae9 to your computer and use it in GitHub Desktop.
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});
module.exports = router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment