I\'m getting following Console Error. Error : Cannot find module
Error : Cannot find module
Here is the full error i\'m getting in console. What should I do?
Caseyjustus comment helped me. Apparently I had space in my require path.
const listingController = require("../controllers/ listingController");
I changed my code to
const listingController = require("../controllers/listingController");
and everything was fine.