在为我的webpack / reactjs应用程序安装软件包时,我遇到一个非常奇怪的错误。
我目前正在尝试安装
npm install copy-webpack-plugin --save dev
构建/启动脚本失败,终端中显示以下错误:
Unsupported platform for inotify@1.4.1: wanted {"os":"linux","arch":"any"} (current: {"os":"darwin","arch":"x64"})
这意味着绝对要注意我,我无法在网上找到任何清晰的说明。
Package.json脚本:
"scripts": { "start": "node server.js", "build": "cross-env BABEL_ENV=production ./node_modules/.bin/webpack --config webpack.config.production.js", "lint": "eslint --cache --ignore-path .gitignore --format=node_modules/eslint-formatter-pretty . *.js", "test": "npm run lint" },
您的命令中有错别字:
应该:
npm install copy-webpack-plugin --save-dev
(你忘了一个破折号)
错字将使npm尝试安装https://www.npmjs.com/package/dev,具体取决于inotify。
inotify
您的错误消息是因为inotify仅适用于Linux,而您适用于Mac。