Hey there, I'm having an issue with my Express server. Everything seems to be working fine, but I'm not receiving data from the POST method. I have already installed and configured body-parser as well.
const express = require("express")
const app = express()
var bodyParser = require('body-parser')
app.use(bodyParser.urlencoded({ extended: false }))
app.use(bodyParser.json())
app.post("/signup", (req,res)=>{
var data = req.body
res.send(req.body)
})