Overview of body-parser middleware
masterbody-parser is a Node.js middleware that parses incoming request bodies and makes them available under the req.body property.
Security Warning: Because req.body is based on user-controlled input, all properties and values are untrusted. You must validate all data before use. For example, calling req.body.foo.toString() is unsafe because foo might be missing, might not be a string, or toString might not be a function.
Limitations: This module does not handle multipart bodies (e.g., file uploads). For multipart bodies, use modules such as busboy, multiparty, formidable, or multer.