You do not need to add them to the path. You will find them in the req.query object.
var util = require('util'); app.get('/skittles', function(req, res) { console.log(req.query); var type = req.query.type || []; console.log("type: "+util.inspect(type)); res.send("Type: "+util.inspect(type)); });
source share