GET /something?color1=red&color2=blue app.get('/something', (req, res) => { req.query.color1 === 'red' // true req.query.color2 === 'blue' // true })