Updated: October 2022
First check or add the body parser using below step:
step :1import bodyParser from 'body-parser';
step 2:app.use(bodyParser.urlencoded({ extended: false }));app.use(bodyParser.json());
step 3: most important router shoud be define below of body parser that is the main reason for body undefined....
import noteRouter from "./src/routes/category_routes.js";
app.use(noteRouter);
whatever you name define in router depends on you..
Hope this help you guyz