How to organize your React project?

Nishant Pai
4 min readAug 21, 2019

--

A while back, I saw someone tweet that flat file structure is better than a nested folder structure.

Usually, I scroll to such tweets, but something was in the back of my mind saying

Would flat-file structure really be better than nested file structure?

Every project I’ve done so far has been in components, containers and then putting the dumb repeating elements as components and the pages in containers. Does this hierarchy not matter?

Then Dan jumped into the thread as well saying

So, I decided to recheck the official documentation whether they had a recommended way to go about this.

Is there a recommended way to structure React projects?

React doesn’t have opinions on how you put files into folders. That said there are a few common approaches popular in the ecosystem you may want to consider.

So, there is definitely no say on what a good code structure would be for React, but to my surprise, there is definitely a warning regarding avoiding nesting:

Now, I’m curious how do other companies/projects organize their React projects?

Facebook

Apparently, this same thread also had the answer to what facebook uses

I found this to be really interesting

1. This approach definitely ensures that there is consistency across teams.

2. There is no mention of this approach in the documentation

- Grouping by features/routes

The hierarchy in this is decided by routes and the dumb components would be in the common folder. Seems pretty straightforward.

- Grouping by file type

There are more children from the root in this case, where we divide into api, components. This is how most React boilerplates are organized,

This file structure seems to make sense in boilerplates as it’s a general approach to any project.

Airbnb

  • Components: These are root components, for instance, theButton component would be declared in the following mannerButton/index.js (styles in the same folder)
  • Higher-order components: Just a different name for containers, but they have the same structure Container/index.js

So, Airbnb doesn’t seem to follow the flat hierarchy as facebook does.

PS: Do check out the style guide it has a good set of practices mentioned.

Uber

There doesn’t seem to be much documentation on what Uber seems to be used as a guide, but I was able to decipher a few things from their Github though:

Folder structure for the react-map-gl website

Based on this project it seems that they too are using components although, there are no containers , the app is located in the components

They seem to be following a flat structure for a project for components and containers and for other types for eg; utils , actions , reducers there are separate folders.

Uber doesn’t seem to be having a style guide, but it does have a package for ensuring:

  • Enforce a consistent style with no configuration across the project.
  • Catch style error’s before they are submitted as PR’s.

Does this affect the performance of the app?

Nope. The final build version of the app is not affected by the code structure thanks to webpack which bundles based on the file type irrespective of how you structure your app. Phew!

Does this affect code readability?

Definitely. A good organization of components and containers ensures a standard which can be followed across teams and it’s easier to onboard new devs as well (Probably true for most projects). It’s a plus if you have a documented style guide like Airbnb did which others in the community could also check on.

Additional Links

Conclusion

  1. There is no right way on how to organize your React project. If you are not sure initially, you could use the boilerplate and work accordingly.
  2. The performance of the app is not affected by how you organize your code.
  3. A consistent style guide is always a plus for the existing team and for onboarding new developers.

--

--

Nishant Pai

Fullstack dev | Freelancer | React.js dev | Node.js dev |