body-parser is a module of node.js. It extracts parameters from body of client POST request data easily.
req.body is set to undefined as default before using body-parser.
You should install body-parser like npm install body-parser
Remember, please when using Express, you shouldn't import body-parser.