Javascript – Unable to post to express app using postman
I have the following code in my node app: // POST route app.post('/bb', async (req, res) => { try { // Assuming you're receiving JSON data in the request body const newData = await req; // Process the new data…