I'm encountering an error when trying to run an npm script that involves Yarn. Here's the sequence of events:
- I've initialized a project with create-react-app.
- 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"
}
- When I run npm run lint, I'm prompted whether to use Yarn, to which I respond with "y".
- 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:
- I've initialized a project with create-react-app.
- 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"
}
- When I run npm run lint, I'm prompted whether to use Yarn, to which I respond with "y".
- 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 runnpm install
? (because while as far as I know, yarn doesn't currently support peer dependencies, using another dependency instead of just usingnpm
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
2 Answers
Reset to default 6The 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
andchild_process.spawnSync
. Node.js will now error withEINVAL
if a.bat
or.cmd
file is passed tochild_process.spawn
andchild_process.spawnSync
without theshell
option set. If the input tospawn/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.