jLinux

Untitled

Dec 3rd, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var express = require('express');
  2. var app = express();
  3.  
  4. var myLogger = function (req, res, next) {
  5.   console.log('LOGGED');
  6.   next();
  7. };
  8.  
  9. app.use(myLogger);
  10.  
  11. app.get('/', function (req, res) {
  12.   res.send('Hello World!');
  13. });
  14.  
  15. app.listen(3000);
Advertisement
Add Comment
Please, Sign In to add comment