您好,在 node.js 项目中,我无法将文件移动到 src 文件夹,因为在 运行 节点文件时出现错误。现在文件在根目录中

Hello, On a node.js project, and I cannot move files to a src folder because I got an error when running the node file. Now the files are in the root

错误:找不到模块“/Users/alejandraola/Documents/GitHub/SCL16-md-link/prueba.js” 在 Function.Module._resolveFilename(节点:internal/modules/cjs/loader:924:15) 在 Function.Module._load(节点:internal/modules/cjs/loader:769:27) 在 Function.executeUserEntryPoint [作为 运行Main](节点:internal/modules/run_main:76:12) 在节点:internal/main/run_main_module:17:47 { 代码:'MODULE_NOT_FOUND', 要求堆栈:[] }

我希望能够。将文件移动到 src 文件夹,然后 运行 从那里移动文件。

报错是node移动后找不到模块

我认为您正在代码中的某处导入这些文件,

您需要找到它并将其更改为新目录,

它将类似于此:

require("/prueba.js");

如果您将其移至 Src 文件夹,则也将其添加到路径中

require("/src/prueba.js");