Q:

express get params after ?

GET /something?color1=red&color2=blue

app.get('/something', (req, res) => {
    req.query.color1 === 'red'  // true
    req.query.color2 === 'blue' // true
})
5
app.get('/path/:name', function(req, res) {
  res.send("tagId is set to " + req.params.name);
});
3

New to Communities?

Join the community