express query method code example
Example 1: 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
})
Example 2: node js http request express
npm install [email protected]