-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
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
No content provided #8644
Comments
BTW: npm -v = 6.13.7 |
@dreamchasersuon Try
and then do a
Also, the yarn error is because package.json is missing the start section in scripts. See below for an example:
|
I can confirm that even without any global install of create-react-app the NPX call is failing to create an actual react application Node 12.6.0 Contents of package.json are {
"name": "experimental-webclient",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "3.4.0"
}
} |
It is possible that there is an issue with the npm cache. Try something like
Also check out https://docs.npmjs.com/cli/cache.html to read up on the npm cache commands. |
@dreamchasersuon I was able to replicate the issue
|
I can confirm that uninstalling create-react-app globally fixes this issue with npx. Thank you, guys! |
Situation
Hi, guys!
Just tried to init new app using this command
npx create-react-app my-app
.Everything is done well, but look at this:
Few weeks ago everything goes right. Install --> cd to-my-app --> yarn/npm start --> woohoo.
Now I can't do anything. I see this message
command not found
with this project files:Question
What's going on? Am I missing something, or this is a bug?
The text was updated successfully, but these errors were encountered: