最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Error when running npm script with Yarn: "ERR spawn EINVAL - Stack Overflow

programmeradmin3浏览0评论

I'm encountering an error when trying to run an npm script that involves Yarn. Here's the sequence of events:

  1. I've initialized a project with create-react-app.
  2. Added the following script to my package.json file
"scripts": {
    "lint": "yarn add -D prettier && yarn add -D babel-eslint && npx install-peerdeps --dev eslint-config-airbnb && yarn add -D eslint-config-prettier eslint-plugin-prettier"
}
  1. When I run npm run lint, I'm prompted whether to use Yarn, to which I respond with "y".
  2. However, I'm getting the following error: "ERR spawn EINVAL".

I tried installing Yarn globally using npm install -g yarn, but the issue persists.I've checked for any relevant configuration settings or environment variables, but couldn't find any apparent cause for the error.

My environment: Windows 11

> node --version  
v20.12.2
> npm --v
10.5.0
> yarn --v
yarn install v1.22.22

I'm encountering an error when trying to run an npm script that involves Yarn. Here's the sequence of events:

  1. I've initialized a project with create-react-app.
  2. Added the following script to my package.json file
"scripts": {
    "lint": "yarn add -D prettier && yarn add -D babel-eslint && npx install-peerdeps --dev eslint-config-airbnb && yarn add -D eslint-config-prettier eslint-plugin-prettier"
}
  1. When I run npm run lint, I'm prompted whether to use Yarn, to which I respond with "y".
  2. However, I'm getting the following error: "ERR spawn EINVAL".

I tried installing Yarn globally using npm install -g yarn, but the issue persists.I've checked for any relevant configuration settings or environment variables, but couldn't find any apparent cause for the error.

My environment: Windows 11

> node --version  
v20.12.2
> npm --v
10.5.0
> yarn --v
yarn install v1.22.22
Share Improve this question edited Jul 17, 2024 at 9:25 VLAZ 29.1k9 gold badges63 silver badges84 bronze badges asked May 2, 2024 at 16:22 Pritam GhoshPritam Ghosh 711 gold badge1 silver badge7 bronze badges 2
  • Don't post a screenshot of text, post the text. But one question would be why you're running npx install-peerdeps at all? If you need everything including peer deps installed, just run npm install? (because while as far as I know, yarn doesn't currently support peer dependencies, using another dependency instead of just using npm is very strange) – Mike 'Pomax' Kamermans Commented May 2, 2024 at 19:33
  • Thanks for your guide! I was setting up ESLint for my React project using npm run lint, not npx install-peerdeps. I just wanted to make sure I had all the necessary dependencies installed, including peer dependencies. I'll remember your advice about using npm install directly for future setups. And good to know about Yarn not supporting peer dependencies at the moment. – Pritam Ghosh Commented May 3, 2024 at 16:34
Add a ment  | 

2 Answers 2

Reset to default 6

The error was caused by a security update in Node.js.

From that blog:

It is important to note that there has been a breaking change for Windows users who utilize child_process.spawn and child_process.spawnSync. Node.js will now error with EINVAL if a .bat or .cmd file is passed to child_process.spawn and child_process.spawnSync without the shell option set. If the input to spawn/spawnSync is sanitized, users can now pass { shell: true } as an option to prevent the occurrence of EINVALs errors.

Since the mand you run (install-peerdeps) called the spawn method without that option set (link to code), the script failed with that error.

That blog also introduced a workaround, although it is not remended, and I am not sure if this works with npx:

While it is possible to also pass --security-revert=CVE-2024-27980 to revert the security patch, we strongly advise against doing so.

If you really need the peer dependencies to be installed automatically, you may need to write your own script or switch your package manager to npm which supports this starting from v7.

I was also facing this issue and tried some stuffs but switching back to nodejs 18 LTS version has helped and now applications are running fine.

发布评论

评论列表(0)

  1. 暂无评论