I've written a lot about React starter projects. I've catalogued over 100 starter projects, written about when not to use them, and even built a tool to help you write your own.
Now that Facebook has come out with their own starter called create-react-app, you might be wondering if this is the one, true starter project.
Does Facebook's starter project make all the others obsolete?
Let's start with the stars. This is a comparison of the top five starters from my list:
Wow. So many star. create-react-app is on a meteoric rise. It just reached the #1 position.
Some of those stars may be from the fame of Facebook having launched it, but there is more to it.
Let's dive a little deeper.
Most other starter projects advise you to clone their git repository to get started.
This has a few disadvantages:
create-react-app works a bit differently. When you create a react app with create-react-app you get a project with a single dev dependency: the react-scripts package.
That react-scripts package has everything you need as a sub-dependency. This means a much smaller, cleaner, easier-to-read project with less boilerplate.
create-react-app relies on several other tools, the main ones are:
If you strongly dislike any of the above, that will be a nonstarter for using create-react-app.
react-create-app is awesome for beginners because:
ES6 and some ES7, linting, tests, build, and even deploy to GitHub pages is all ready to go.
All the provided commands have friendly output that makes working with create-react-app a breeze.
A project with such a simple user interface doesn't come without downsides.
create-react-app advertises "no build configuration" and they mean it - you cannot configure this tool.
The most glaring missing piece is CSS preprocessors. They are not supported at all. That means:
If you want to add or change anything, you have to 'eject'. Running
npm run eject
spits out all the configuration files so you can edit them
yourself.
It's great to have this option, but if you do it you are left with all the disadvantages of any other starter pack (many dependencies, config boilerplate, no ability to receive updates).
If you are a beginner and you eject you may be in for a shock. Your project will go from 3 dependencies to 49 dependencies.
However, if you compare the ejected create-react-app project to other starter projects, it is still a great starter. It ejects two webpack config files that are about 200 lines each. That sounds long, but they are filled with explanatory comments that are, according to one beginner "better than the Webpack documentation."
Use this tool. It will save you many headaches. You have to write your CSS without a preprocessor, but it's worth it.
If and when you 'eject', take a learning break. Set aside your create-react-app project and start something new from scratch to learn Webpack. Or at least take make sure you understand basic bundling concepts.
Deal with the fact that there are no CSS processors. Build something fun. Deploy it. Share it with your friends.
create-react-app might make it more fun for you to jump into some really small hobby/side projects, but I suspect you will miss your favorite CSS preprocessor (I know I would miss CSS Modules).
For advanced users, using an 'ejected' create-react-app as a starting point is also a great option.