'I can't create a react app and I keep getting the same errors
Solution 1:[1]
It's problem in, you're npm version consider using a stable version of npm npm version
run this command
npm install -g npm@latestit will install the new version of npm if it's still not working use flag while creating react appnpx create-react-app newapp -forceandnpm cache clear --force
In case it still not working delete
package-lock.jsonfrom you're project and runnpm installagain
Solution 2:[2]
Try to avoid Node latest version 17.0. Use 14 or 16 version instaed.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | bilalzafar0001 |

