create-react-app does not install everything
See original GitHub issueI have a problem : After entering the create-react-app my-app
(in my case, in the attached picture create-react-app my-app --typescript
) create-react-app
only installs package.json`` yarn.lock
and node_modules
as you can see in the picture, and everything stops. What is the problem? I have already tried npm install -g npm
npm uninstall -g create-react-app
npx create-react-app my-app
but nothing helped. Thanks for answers in advance!
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
I can't install react using npx create-react-app? - Stack Overflow
I can't install react using npx create-react-app? ; try npm cache clean --force then run npm install -g create-react-app@latest. – Satish Patel.
Read more >npx create-react-app is not working · Issue #10132 - GitHub
First, you'll need to uninstall "create-react-app" using the "npm uninstall -g create-react-app" command. Run "npx create-react-app my-app" each ...
Read more >npx create-react-app not working? Here's the solution.
1). We no longer support global installation of Create React App. The current solution is simple — run create-react-app and target the latest ......
Read more >What To Do if create-react-app Doesn't Work
1. npm uninstall -g create-react-app. This is the npm command to uninstall your global installation of create-react-app .
Read more >Install React on Windows | Microsoft Learn
Install React using create-react-app, a tool that installs all of the ... new project you are using the most recent version of React...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@bradfordlemley Please try running
npm cache clean --force
and then create an application again.I tried on a window 10 machine. Was getting some other errors like
npm cache clear --force
fixed this issue. I have installedcreate-react-app
globally withnpm i g create-react-app
and then created an app withcreate-react-app my-app --typescript
This issue has been automatically closed because it has not had any recent activity. If you have a question or comment, please open a new issue.