0

我正在尝试在这里设置一个 ES6 入门项目/模板/工作流,并且我正在尝试包含 Airbnb 的 ESLint/javascript 样式指南。我目前在项目中设置了 ESLint。

我在Windows 7节点 v8.11.1npm v4.1.2 上

根据https://www.npmjs.com/package/eslint-config-airbnb-base上的说明

我已经通过以下方式安装了 install-peerdeps:

npm install -g install-peerdeps

它看起来像它的版本 1.6.0。

当我然后运行时:

install-peerdeps --dev eslint-config-airbnb-base

我收到以下错误:

'install-peerdeps' is not recognized as an internal or external
command, operable program or batch file.

我的 NODE_PATH 变量设置为:

%AppData%\npm\node_modules

如果我这样做,npm root -g我会得到:

C:\Users\<username>\AppData\Roaming\npm\node_modules

任何人都知道如何让 install-peerdeps 工作?

4

1 回答 1

1

你有install-peerdeps全局安装吗?

尝试按照此处install-peerdeps所述安装软件包,然后重试。

# If you're using npm
npm install -g install-peerdeps

# If you're using yarn
yarn add install-peerdeps -g

install-peerdeps我在 OSX 上遇到了同样的错误,安装软件包后我得到了解决。我希望它也能解决 Windows 的错误。

于 2018-12-04T09:42:57.460 回答