-
Notifications
You must be signed in to change notification settings - Fork 47.7k
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
Error npx create-react-app my-app --template typescript #31699
Comments
@rzahuseyin1993 |
Installing template dependencies using npm... |
It's a copy of facebook/create-react-app#13717 |
any one have any idea to solve the above issue |
|
JESUS THANK YOU @axalix |
the first step is to locate your project folder then run these commands one by one
then
then
then
here what we are doing is uninstalling react19 and installing react18. or you can go with this YouTube link: https://youtu.be/mUlfo5ptm1o?si=hYHTwc7hApEXzPX5 |
@saitejayelubolu thank you sooo much ive literally been stuck for more than two hours i kept trying and trying and i literally have a react exam tomorrow morning so i was in deep problems i saw someone in here say that react is deprecated and its better to use vite to create a react app in 2024 i did that but i then decided to delete all that since my professor will not accept that so i had one last hope on your comment and it actually worked may god bless you thank you so much |
Great one, thank you. |
Before creating the app use this command: npm config set legacy-peer-deps true. After that, use the npx create-react-app and after the process is fully done, change the legacy-peer-deps back to false like this: npm config set legacy-peer-deps false. Hope it works for you guys. It did for me. |
Thx @axalix |
why react team doesn't take any actions to fix this issue? it's a long time. |
Typescript React follows these steps: npm install -g typescript then npm uninstall react react-dom then npm install react@18 react-dom@18 then npm install --no-audit --save @testing-library/jest-dom@^5.14.1 @testing-library/react@^13.0.0 @testing-library/user-event@^13.2.1 @types/jest@^27.0.1 @types/node@^16.7.13 @types/react@^18.0.0 @types/react-dom@^18.0.0 typescript@^4.4.2 web-vitals@^2.1.0 then npx tsc --init then npx tsc --build --clean then npm install --save-dev typescript then open the tsconfig.json { then goto src/App.tsx comment 2nd line then npm start or you can go with this YouTube link: https://youtu.be/_0_kW0xI7P8?si=JWDu0Lyskflmdjol |
wow, it seems i will not use react anymore. this is piece of shit |
The quick start guide fails because of this. |
@saitejayelubolu Thank you! It worked for me and you saved me a couple of hours;) |
No description provided.
The text was updated successfully, but these errors were encountered: