Ex: Obtenez UID à partir de l'URL


app.get('/test/:uid',(req,res,next)=> {
  res.end('Displaying information for uid ' + req.params.uid);
});