Can't create WebStorm React project

SnelleJelle picture SnelleJelle · Nov 25, 2016 · Viewed 10.1k times · Source

I'm trying to create a React project in WebStorm 2016.3.1

It's asking me for a create-react-app but I have no idea what that is and I can't find any reference on Google.

What is it and where can I find the value?

enter image description here

Answer

drinchev picture drinchev · Nov 25, 2016

You need to install create-react-app npm module, before you use this feature.

npm install -g create-react-app

You can read more about this feature on the official release blog of WebStorm.

Excerpt from the documentation :

Make sure that you have create-react-app installed globally on your computer, for that run npm install -g create-react-app. Then to start your new project, double click on the start task in the npm tasks tool window to run it. That’s it!