Scalable and Maintainable React Project Structure Every Developer Should Use.

image by @jcomb freepikA good project structure can have a huge impact on how successful a project is in terms of understanding the codebase, flexibility, and maintenance. Projects that are not well structured and maintained can quickly become a big me…


This content originally appeared on Level Up Coding - Medium and was authored by Thomas Sentre

image by @jcomb freepik

A good project structure can have a huge impact on how successful a project is in terms of understanding the codebase, flexibility, and maintenance. Projects that are not well structured and maintained can quickly become a big mess and dreadful legacy that no one is too happy to work with.

I will now show you the structure that I very often use in my projects, and explain the reasoning behind it. This structure should be a good starting point for a large-scale application, and you can expand on it depending on the project’s needs. Here is the src structure I can recommend for most projects:

Let’s cover the folders from top to bottom.

api

First, we have the api folder, which will contain the API Layer of our application. It will have methods that are responsible for performing API requests and communicating with a server.

assets

The assets folder contains fonts, images, and videos. In the fonts, you can keep any custom fonts and typefaces. In images store any pictures used throughout the application.

components

The components directory contains two directories: common and transitions. The common directory will contain any reusable components that are commonly used throughout the application. For instance, buttons, form components, components related to typography, and so on. Any components that are not as common would be placed inside of transitions components.

Hooks

The hooks directory, as the name suggests, would hold any custom and reusable hooks. Note that any hooks that are not really reusable, but are coupled to a specific feature, should be placed in the same directory as that feature. For instance, imagine we have a newsletter form component that contains a form to sign up a user for a newsletter. This component could utilize a hook called useNewsletterSignup that would handle signing up a user. A hook like this shouldn’t be placed in the global src/hooks directory, but rather locally, as it is coupled to the NewsletterForm component. Here’s what it could look like:

It’s best to keep logic that is coupled as closely as possible to where it is used. This way, we will not unnecessarily add more code into the global hooks folder that should contain only reusable hooks. The same applies to other functionality, such as helpers, services, etc.

context

The context directory should contain any global-level context state providers.

layout

Layout directory, as the name suggests, should have components that provide different layouts for your pages. For example, if you are building a dashboard application, you could render different layouts depending on if a user is logged in or not.

config

In the config directory, you can put any runtime config files for your application and third-party services. For instance, if you use a service like Firebase or OIDC for authentication, you will need to add configuration files and use them in your app. Just make sure not to confuse config with environmental variables, as anything that goes here will be present in the build bundle.

constants

Here you can put any constant variables that are used throughout the application. It’s a good practice to capitalize your constants to distinguish them from other variables and localized constants in your app.

Below are some examples of defining and using constants:

  • Define constants separately
  • Define related constants in one object

helpers

Any utilities and small reusable functions should go here — for example, functions to format date, time, etc.

intl

This directory is optional. Add it if an application requires internalization support. Intl, also known as i18n, is about displaying the content of an app in a format appropriate to the user’s locale. This content can include but not be limited to translated text or specific format of dates, time, and currency. For instance, whilst the UK uses DD/MM/YYYY format, the US uses MM/DD/YYYY.

services

In larger applications, we might have complex business logic code that is used in a few different places. A code like this is a good candidate to be extracted from components and placed somewhere else, and the services folder is a good candidate for that.

store

The store folder is responsible for files related to global state management. There are many state management solutions that can be used for React projects, such as Redux, Zustand, Jotai, and many many more.

styles

You can put global styles, variables, theme styles, and overrides in the styles folder.

types

Here you can put any global and shareable types. With this approach, you can save time and more easily share the TypeScript code and types you and your team need.

views

Usually, the views directory only contains route/page components. For example, if we have a page that is supposed to allow users to view products, we would have a component Products.tsx in the views folder, and the corresponding route could be something like this:

<Route path=”/projects” element={<Products />} />

There is a reason why I said “usually”, though. Many applications have route components in the views, and the rest of the components for it are placed in the components folder. This approach can work for small to medium applications but is much harder to manage and maintain when the number of pages and components grows.

Summary

Choosing the right folder structure is not an easy task. You need to agree with the team on the structure that suits the application, and what might suit one need, might not suit another. Should hopefully be valid for the next years to come. What would you do differently to ensure a good, maintainable structure? Let me know in the comments below.


Scalable and Maintainable React Project Structure Every Developer Should Use. was originally published in Level Up Coding on Medium, where people are continuing the conversation by highlighting and responding to this story.


This content originally appeared on Level Up Coding - Medium and was authored by Thomas Sentre


Print Share Comment Cite Upload Translate Updates
APA

Thomas Sentre | Sciencx (2022-09-21T02:00:19+00:00) Scalable and Maintainable React Project Structure Every Developer Should Use.. Retrieved from https://www.scien.cx/2022/09/21/scalable-and-maintainable-react-project-structure-every-developer-should-use/

MLA
" » Scalable and Maintainable React Project Structure Every Developer Should Use.." Thomas Sentre | Sciencx - Wednesday September 21, 2022, https://www.scien.cx/2022/09/21/scalable-and-maintainable-react-project-structure-every-developer-should-use/
HARVARD
Thomas Sentre | Sciencx Wednesday September 21, 2022 » Scalable and Maintainable React Project Structure Every Developer Should Use.., viewed ,<https://www.scien.cx/2022/09/21/scalable-and-maintainable-react-project-structure-every-developer-should-use/>
VANCOUVER
Thomas Sentre | Sciencx - » Scalable and Maintainable React Project Structure Every Developer Should Use.. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/09/21/scalable-and-maintainable-react-project-structure-every-developer-should-use/
CHICAGO
" » Scalable and Maintainable React Project Structure Every Developer Should Use.." Thomas Sentre | Sciencx - Accessed . https://www.scien.cx/2022/09/21/scalable-and-maintainable-react-project-structure-every-developer-should-use/
IEEE
" » Scalable and Maintainable React Project Structure Every Developer Should Use.." Thomas Sentre | Sciencx [Online]. Available: https://www.scien.cx/2022/09/21/scalable-and-maintainable-react-project-structure-every-developer-should-use/. [Accessed: ]
rf:citation
» Scalable and Maintainable React Project Structure Every Developer Should Use. | Thomas Sentre | Sciencx | https://www.scien.cx/2022/09/21/scalable-and-maintainable-react-project-structure-every-developer-should-use/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.