Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issues with running npx create-react-app on node 15.2.1 #10127

Open
ghost opened this issue Nov 23, 2020 · 24 comments
Open

Issues with running npx create-react-app on node 15.2.1 #10127

ghost opened this issue Nov 23, 2020 · 24 comments

Comments

@ghost
Copy link

ghost commented Nov 23, 2020

When I run npx create-react-app appname I get the following error message:

You are running `create-react-app` 4.0.0, which is behind the latest release (4.0.1).

We no longer support global installation of Create React App.

Please remove any global installs with one of the following commands:
- npm uninstall -g create-react-app
- yarn global remove create-react-app

The latest instructions for creating a new app can be found here:
https://create-react-app.dev/docs/getting-started/

npm ERR! code 1
npm ERR! path /Users/hat/Projects/youtube/react
npm ERR! command failed
npm ERR! command sh -c create-react-app loll

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/hat/.npm/_logs/2020-11-23T06_53_20_858Z-debug.log

I then ran npm uninstall -g create-react-app and got the following output:

up to date in 380ms

found 0 vulnerabilities

After running npm uninstall -g create-react-app command I ran npx create-react-app appname and I got the same error message as above.

This is what the error log located in /Users/hat/.npm/_logs/2020-11-23T06_53_20_858Z-debug.log looks like:

0 verbose cli [
0 verbose cli   '/Users/hat/.nvm/versions/node/v15.2.1/bin/node',
0 verbose cli   '/Users/hat/.nvm/versions/node/v15.2.1/lib/node_modules/npm/bin/npm-cli.js',
0 verbose cli   'exec',
0 verbose cli   '--',
0 verbose cli   'create-react-app',
0 verbose cli   'loll'
0 verbose cli ]
1 info using npm@7.0.8
2 info using node@v15.2.1
3 timing config:load:defaults Completed in 2ms
4 timing config:load:file:/Users/hat/.nvm/versions/node/v15.2.1/lib/node_modules/npm/npmrc Completed in 1ms
5 timing config:load:builtin Completed in 1ms
6 timing config:load:cli Completed in 1ms
7 timing config:load:env Completed in 1ms
8 timing config:load:file:/Users/hat/Projects/youtube/.npmrc Completed in 0ms
9 timing config:load:project Completed in 1ms
10 timing config:load:file:/Users/hat/.npmrc Completed in 0ms
11 timing config:load:user Completed in 0ms
12 timing config:load:file:/Users/hat/.nvm/versions/node/v15.2.1/etc/npmrc Completed in 0ms
13 timing config:load:global Completed in 0ms
14 timing config:load:cafile Completed in 0ms
15 timing config:load:validate Completed in 1ms
16 timing config:load:setUserAgent Completed in 0ms
17 timing config:load:setEnvs Completed in 1ms
18 timing config:load Completed in 8ms
19 verbose npm-session ccfcf510fa3376be
20 timing npm:load Completed in 17ms
21 http fetch GET 304 https://registry.npmjs.org/create-react-app 252ms (from cache)
22 timing arborist:ctor Completed in 1ms
23 timing arborist:ctor Completed in 0ms
24 timing arborist:ctor Completed in 0ms
25 timing command:exec Completed in 1728ms
26 verbose stack Error: command failed
26 verbose stack     at ChildProcess.<anonymous> (/Users/hat/.nvm/versions/node/v15.2.1/lib/node_modules/npm/node_modules/@npmcli/promise-spawn/index.js:64:27)
26 verbose stack     at ChildProcess.emit (node:events:329:20)
26 verbose stack     at maybeClose (node:internal/child_process:1055:16)
26 verbose stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:288:5)
27 verbose cwd /Users/hat/Projects/youtube
28 verbose Darwin 19.6.0
29 verbose argv "/Users/hat/.nvm/versions/node/v15.2.1/bin/node" "/Users/hat/.nvm/versions/node/v15.2.1/lib/node_modules/npm/bin/npm-cli.js" "exec" "--" "create-react-app" "loll"
30 verbose node v15.2.1
31 verbose npm  v7.0.8
32 error code 1
33 error path /Users/hat/Projects/youtube
34 error command failed
35 error command sh -c create-react-app loll
36 verbose exit 1

I ran npm cache clean --force to clear the cache. The output after running this command was npm WARN using --force Recommended protections disabled.

I'm running

  • node version: v15.2.1
  • npm version: 7.0.8
  • npx version: 7.0.8
  • OS: maOS CAtalina 10.15.7
  • Im using vvm version 0.35.3 to manage my node versions

I also noticed that when I downgraded my node version to v14.1.0, npm and npx was automatically downgraded to 6.14.6. I then ran npx create-react-app appname and the command worked. I was able to create react app.

@vaibhavarora14
Copy link

facing the same issue

@vaibhavarora14
Copy link

okay wait got it fixed after removing it from with npm and yarn command

@GautierT
Copy link
Contributor

GautierT commented Nov 23, 2020

Same issue. I already run

- npm uninstall -g create-react-app
- yarn global remove create-react-app

On MacOs Big Sur.
node -v : v14.15.1
npm -v : 7.0.12

EDIT:
npm install -g create-react-app fix it but it's the opposite of what the message suggest to do...

@NinaKWelch
Copy link

I reverted to the latest stable version of npm (from 7.0.10 to 6.14.9) and that resolved the issue for me. I'm on MacOs Catalina (10.15.7) with node version 15.2.1 installed.

@SincerelyBrittany
Copy link

@NinaKWelch how did you revert to the latest version of npm? I am facing the same issue

@NinaKWelch
Copy link

I ran npm install -g npm@latest

@eduardomillanrs
Copy link

@NinaKWelch

I ran npm install -g npm@latest

Thanks!

@sergey-zavadsky
Copy link

I ran npm install -g npm@latest

It helps, thanks!

@handbremse
Copy link

I ran npm install -g npm@latest

THANK YOU!

@JoakimTeixeira
Copy link

I had to install the LTS version of node (v14.15.1) to fix the problem. I was using the latest one (v15.2.1).

These are now the versions installed in my Linux Ubuntu 20.04.01 system:
npm: 6.14.8
npx: 6.14.8
node: v14.15.1

Obs: I'm using NVM (Node Version Manager)

@ningaro
Copy link

ningaro commented Nov 24, 2020

I reverted to the latest stable version of npm (from 7.0.10 to 6.14.9) and that resolved the issue for me. I'm on MacOs Catalina (10.15.7) with node version 15.2.1 installed.

It helps. For downgrade npm used this command npm install -g npm@6.14.9 -force.

  • nvm: 1.1.7
  • node: 15.2.1
  • npm: 7.0.8

@garynye
Copy link

garynye commented Nov 24, 2020

I ran npm install -g npm@latest

thanks, this worked!

@swapnil0709
Copy link

I ran npm install -g npm@latest

Thanks, man!! This solved my Issue

@harleydi
Copy link

I ran npm install -g npm@latest

out of all 1 million articles i have read your comment was my dream come true lol !! THANK YOU 🙏 !

@umerwaseem4
Copy link

I ran npm install -g npm@latest

yeh that works for me thanks

@nrayburn-tech
Copy link

NPM 7 had some changes with peer dependencies, which might be some of the problem here.
There is also a dependency somewhere deep in the tree that doesn't support node 15. I think it's an older version of chokidar.

It's safest to use node 14 and NPM 6 until the newest versions get tested more.

@DanielGeek
Copy link

DanielGeek commented Nov 30, 2020

I ran npm install -g npm@latest

thanks

@NeonWizard
Copy link

As @GautierT said, running npm install -g create-react-app fixed the problem for me, despite the command notifying you to uninstall create-react-app globally.

@ScotttP
Copy link

ScotttP commented Feb 10, 2021

Had a similar issue with CRA.

Node version: 13.11.0
NPM version: 7.5.3

I downgraded to NPM 6.14.11 and i was able to create fine.

@Vitalij202020
Copy link

npm install -g npm@latest it's really helpful, thanks!

@chaurasiawadh
Copy link

I solved this using the following command.

npm uninstall -g create-react-app

npm cache clean --force

then

npx create-react-app project_name --template all

Thanks for this! Worked for me too.

@prasannanimbalkar
Copy link

prasannanimbalkar commented Jul 17, 2021

I ran npm install -g npm@latest

it worked , thanks a lot

@stale
Copy link

stale bot commented Jan 9, 2022

This issue has been automatically marked as stale because it has not had any recent activity. It will be closed in 5 days if no further activity occurs.

@stale stale bot added the stale label Jan 9, 2022
@lcsiki
Copy link

lcsiki commented Aug 22, 2022

This is still an issue with:

39 verbose node v16.15.0
40 verbose npm  v8.5.5

and npm install -g npm@latest does not helps.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests