1

我创建了一个新文件夹,然后运行“create-react-app”。(这是在 Windows 10 中。)然后我从另一个文件夹中复制了一个 package.json 文件,该文件夹具有几周前使用“create-react-app”制作的运行代码。然后我运行“yarn install”以使用复制旧应用程序所需的所有 node_modules 更新新应用程序。为什么我会在控制台显示中收到许多如下所示的错误?

注意:我无法显示完整的未格式化显示,因为 stackoverflow 不允许我发布它。所以这是我格式化的几行。

ERR! stack     at emitTwo (events.js:106:13)\nnode-pre-gyp 
ERR! stack     at ChildProcess.emit (events.js:191:7)\nnode-pre-gyp 
ERR! stack     at maybeClose (internal/child_process.js:877:16)\nnode-pre-gyp
ERR! build error \nnode-pre-gyp ERR! stack Error: Failed to execute 'node-gyp.cmd configure --fallback-to-build --module=C:\\Users\\Bruce\\Dropbox\\Projects BlueDuck\\Blue-Duck-Beta-Test\\node_modules\\fsevents\\lib\\binding\\Release\\node-v48-win32-x64\\fse.node --module_name=fse --module_path=C:\\Users\\Bruce\\Dropbox\\Projects BlueDuck\\Blue-Duck-Beta-Test\\node_modules\\fsevents\\lib\\binding\\Release\\node-v48-win32-x64' (1)\nnode-pre-gyp
ERR! stack     at ChildProcess.<anonymous> (C:\\Users\\Bruce\\Dropbox\\Projects BlueDuck\\Blue-Duck-Beta-Test\\node_modules\\fsevents\\node_modules\\node-pre-gyp\\lib\\util\\compile.js:83:29)\nnode-pre-gyp
4

1 回答 1

0

你运行的是什么版本的 npm?如果是 5+,请尝试:

npm i -g npm@4

这个线程

于 2017-07-20T23:02:45.327 回答