Files
fauxjira/client
Denis Skiba cb7710378d Improve effect
There is no need to create function each time when history changes and do not use it.
2020-02-01 12:10:43 +07:00
..
2020-01-05 02:54:46 +01:00
2020-02-01 12:10:43 +07:00
2019-12-03 20:39:54 +01:00
2020-01-05 02:54:46 +01:00
2020-01-05 02:54:46 +01:00
2020-01-05 02:54:46 +01:00
2020-01-12 01:59:08 +01:00
2019-12-03 20:39:54 +01:00

Project structure 🏗

I've used this architecture on multiple larger projects in the past and it performed really well.

There are two special root folders in src: App and shared (described below). All other root folders in src (in our case only two: Auth and Project) should follow the structure of the routes. We can call these folders modules.

The main rule to follow: Files from one module can only import from ancestor folders within the same module or from src/shared. This makes the codebase easier to understand, and if you're fiddling with code in one module, you will never introduce a bug in another module.


File or folder Description
src/index.jsx The entry file. This is where we import babel polyfills and render the App into the root DOM node.
src/index.html The only HTML file in our App. All scripts and styles will be injected here by Webpack.
src/App Main application routes, components that need to be mounted at all times regardless of current route, global css styles, fonts, etc. Basically anything considered global / ancestor of all modules.
src/Auth Authentication module
src/Project Project module
src/shared Components, constants, utils, hooks, styles etc. that can be used anywhere in the codebase. Any module is allowed to import from shared.