Error: Cannot find module 'C:\Users\DELL\Desktop\样式\app.js' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:885:15) at Function.Module._load (internal/modules/cjs/loader.js:730:27) at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12) at internal/main/run_main_module.js:17:47 { code: 'MODULE_NOT_FOUND', requireStack: [] } PS C:\Users\DELL\Desktop\样式> npm run serve npm ERR! code ENOENT npm ERR! syscall open npm ERR! path C:\Users\DELL\package.json npm ERR! errno -4058 npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\DELL\package.json' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoent npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\DELL\AppData\Roaming\npm-cache\_logs\2023-06-10T02_01_31_054Z-debug.log PS C:\Users\DELL\Desktop\样式>
时间: 2023-09-11 17:07:02 浏览: 320
FileNotFoundError: Could not find module ‘***-dll.dll‘
这个错误可能是因为你的应用程序的入口文件(app.js)不存在,或者你的项目目录不正确。另外,第二个错误可能是因为你没有在你的项目根目录下创建一个package.json文件,这可能会导致npm无法运行你的项目。你可以检查一下你的项目目录和文件是否正确,确保你的入口文件存在,并在项目根目录下创建一个package.json文件。如果问题仍然存在,你可以查看npm的日志以获取更多详细信息。
阅读全文