Mongodb – Postman unable to send request body to express application
I am making a simple post request as follows: app.post('/', (req, res) => { return res.status(200).json(req.body) }) When I give a post request through postman, nothing comes up its just an empty {}. Here is server.js: const express = require("express");…