Is there a way to use this url http://localhost:3000/assets/img/1.jpg?50
instead of this http://localhost:3000/assets/img/1.jpg/50
app.get('/assets/img/:file/:percentage', (req, res) =>{
loadImagePercent(req, res, "private/img/"+req.params.file, req.params.percentage);
});