I've searched extensively, but can't seem to find any information on this topic.
My goal is to create requests like the following: url/list/message=hello?id=1234
Despite my efforts, I have not come across any resources on how to achieve this using Express.
Initially, I thought of approaching it this way:
app.put('/list/message=:msg?id=:id', function (req, res) { ... });
Unfortunately, this approach doesn't work as expected. Is there a way to accomplish this in Express?