This module depends on req.query which means it won't work with vanilla connect but requires express. adding a small middleware like this solves the issue. maybe it can be worked in somehow.
The usage of req.query also causes issues if an app changes the query parser (e.g. changing it to be an instance of URLSearchParams). Perhaps there should be a way to directly provide the queries.
This module depends on
req.query
which means it won't work with vanillaconnect
but requiresexpress
. adding a small middleware like this solves the issue. maybe it can be worked in somehow.