safak / youtube2022

Season 2 on Lama Dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Could not get any response on Post method

Vedant91827 opened this issue · comments

I am using postman , and whenever I am sending request for creating a new user , postman hangs and it does not get any response to register and login route
image

commented

You need to add app.use(express.json()); to index.js so that express knows what to expect, like this:

const express = require('express');
const app = express();
app.use(express.json());