Answer the question
In order to leave comments, you need to log in
Why does not see the module?
Good afternoon. Something stupid. There is a controller
import { Request, Response } from "express";
export let index = (req: Request, res: Response) => {
console.log("home");
};
import * as homeController from "../src/modules/home/controllers/home.controller";
const app = express();
...
app.get("/", homeController.index);
internal/modules/cjs/loader.js:589
throw err;
^
Error: Cannot find module '../src/modules/home/controllers/home.controller'
Answer the question
In order to leave comments, you need to log in
When you import write the extension at the end.
import * as homeController from "../src/modules/home/controllers/home.controller.js";
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question