Node JS Query Dapatkan: ID Param

var test = function(req,res,next) {
  // do whatever logic is needed 
  res.end('Displaying information for uid ' + req.params.uid);
}
app.get('/test/:uid',test);
Tomer Mantzuri