Skip to content

Instantly share code, notes, and snippets.

@Rokt33r
Created June 1, 2015 01:27
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 Rokt33r/baa4f156749b9518ae23 to your computer and use it in GitHub Desktop.
Save Rokt33r/baa4f156749b9518ae23 to your computer and use it in GitHub Desktop.
Express Router
var express = require('express');
var router = express.Router();
router.get('/', function(req, res) {
res.send('Welcome to the API zone');
});
module.exports = router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment