Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. var app = require('express');
  2.  
  3. app.get(
  4. '/foo/bar/<here is picture name e.g. test.jpg>?',
  5. function(req, res, next) {
  6. console.log('Hello');
  7. next();
  8. }
  9. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement