Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. var express = require('express');
  2.  
  3. // Init Express
  4. var app = express();
  5. app.use(app.router);
  6.  
  7. // Routes would go here
  8.  
  9. app.use(function (req, res) {
  10. // 404
  11. });
  12.  
  13. module.exports = app;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement