I've created a simple Express app and am trying to use Postman to test my POST route. I continually get the Cannot GET /todos
error. Any suggestions on the below code?
const express = require('express');
const app = express();
const cors = require('cors');
const pool = require('./db');
//middleware
app.use(cors());
app.use(express.json())
//routes
app.post("/todos", async (req, res) => {
try {
console.log(req.body);
} catch (error) {
console.log(error.message);
}
});
app.listen(3050, () => {
console.log(`Listening on port 3050`);
})
question from:https://stackoverflow.com/questions/65895093/getting-cannot-get-todos