In the current version of body-parser, the extended
option when using bodyParser.urlencoded()
is now required. In the README, it explains:
The extended option allows to choose between parsing the URL-encoded data with the querystring library (when false) or the qs library (when true).
[...]
Defaults to true, but using the default has been deprecated. Please research into the difference between qs and querystring and choose the appropriate setting.
I couldn't find any helpful or specific information on this. I only found a deprecated node-querystring.
Should this option just always be true?