You can set up a query parser (see doc ):
app.disable('query parser')
Place it after express initialization and in front of the router.
You can also pass an empty function to the query parser if in the future you need some tweaking:
app.set('query parser', function(qs, options) {
source share