开发者问题收集

在我的 React App 项目上,Npm run build 不起作用

2022-08-18
3155

当我启动我的 React 项目时,一切似乎都很好,但是当我尝试构建它时,它不起作用,我出现此错误:

node:internal/fs/utils:344
    throw err;
    ^

Error: UNKNOWN: unknown error, lstat 'C:\Users\darkx\Bureau\mlvojobs\mlvojobs\node_modules\fs-extra\lib\util'
    at Object.realpathSync (node:fs:2490:7)
    at toRealPath (node:internal/modules/cjs/loader:394:13)
    at tryFile (node:internal/modules/cjs/loader:390:10)
    at tryExtensions (node:internal/modules/cjs/loader:402:22)
    at Function.Module._findPath (node:internal/modules/cjs/loader:558:20)
    at Function.Module._resolveFilename (node:internal/modules/cjs/loader:919:27)
    at Function.Module._load (node:internal/modules/cjs/loader:778:27)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:102:18)
    at Object.<anonymous> (C:\Users\darkx\Bureau\mlvojobs\mlvojobs\node_modules\fs-extra\lib\copy\copy.js:7:22) {
  errno: -4094,
  syscall: 'lstat',
  code: 'UNKNOWN',
  path: 'C:\\Users\\darkx\\Bureau\\mlvojobs\\mlvojobs\\node_modules\\fs-extra\\lib\\util'
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] build: `react-scripts build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\darkx\AppData\Roaming\npm-cache\_logs\2022-08-18T22_53_48_493Z-debug.log
PS C:\Users\darkx\Bureau\mlvojobs\mlvojobs> npm install fs-extra
npm ERR! cb.apply is not a function

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\darkx\AppData\Roaming\npm-cache\_logs\2022-08-18T22_54_15_541Z-debug.log

当我尝试使用 npm 安装某些东西时,它显示:

npm ERR! cb.apply is not a function
2个回答

node.js有时很奇怪。我遇到此错误,我的选项是切换到另一个node.js版本。

我建议使用 nvm-windows (看起来您正在使用Windows)

您可以安装最新的node.js版本 lts

161841802 < /code>

或特定版本,例如:

196893447

然后删除项目 node_modules 并运行:

478890166

最后,再次构建您的项目。让我知道它是否有效!

Hoàng Huy Khánh
2022-08-19

可能的解决方案:

  1. 转到: C:\Users(您的用户名)\AppData\Roaming
  2. 删除 npm 文件夹,如果有一个 npm 缓存文件夹。
  3. 运行 npm cache clean —force

它应该有效

monim
2022-08-19