ashil
ashil

Reputation: 97

when i try to create react app ,i get " template was not provided ,This is likely because you're using an outdated version of create-react-app " Error

when i try to install react app with following code

npx create-react-app app1

i get following problem

 A template was not provided. This is likely because you're using an outdated version of create-react-app.
Please note that global installs of create-react-app are no longer supported.
You can fix this by running npm uninstall -g create-react-app or yarn global remove create-react-app before using create-react-app again.

i tried npm uninstall -g create-react-app and still it gives the same error , i don't know where the issue lies.

my system info

os : Windows 10 64 bit 
nodeJs  : v14.15.0
npm  : v6.14.8

is this a problem with the node version..? How to solve the issues

Upvotes: -1

Views: 1216

Answers (5)

sudesh pariyar
sudesh pariyar

Reputation: 11

Delete the folder with the title create-react-app from your machine then npx create-react-app my-app this must fix your problem...

Upvotes: 1

Kebasita
Kebasita

Reputation: 201

Implement the following steps: Write this code into your editor: npm install --global yarn And then upgrade: yarn global upgrade Create your app. You can choose your app name: yarn create react-app your-app-name Go to your app directory: cd your-app-name

Upvotes: 1

Edahi Guajardo
Edahi Guajardo

Reputation: 11

Make sure that there is no file named create-react-app anywhere: You can use: where create-react-app in windows to locate it, if that doesn't work, search for it in the file explorer and delete it, that worked for me

Upvotes: 1

sdev
sdev

Reputation: 95

I searched for create-react-app on my whole mac through finder and deleted that folder. Then it worked

Upvotes: 2

Bogy
Bogy

Reputation: 964

Try to remove create-react-app from node_modules from user root and npx create-react-app myapp should work.

or

npx --ignore-existing create-react-app

Upvotes: 2

Related Questions