+ 1
Reading form data in Express.js
I would like to know whether it is common to use the "body-parser" module to read form data in Express.js? Are there other ways to achieve the same?
3 Respostas
+ 3
For Express 4.16+ body parser implementation is included in Express itself you don't need to install a separate package for it.
More details here:
https://medium.com/@mmajdanski/express-body-parser-and-why-may-not-need-it-335803cd048c
+ 2
I think it is common to use body-parser to read form data jn Express.js