jLinux

Untitled

Dec 21st, 2015
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. app.get( '/test/:id([0-9]+)?', ( req, res ) => {
  2.     res.send(`ID: ${req.params.id}`);
  3. } );
  4.  
  5. app.get( '/test/:name([a-zA-Z]+)?', ( req, res ) => {
  6.     res.send(`NAME: ${req.params.name}`);
  7. } );
Advertisement
Add Comment
Please, Sign In to add comment