We aim to have:
- An 'A' score on Maintainability Rating
- An 'A' score on Security Rating
- A 3% of duplicated lines
- Create a
.npmrc
file from the.npmrc.template
example provided in the repo. - Replace
TOKEN
with your own Github Personal Access Token withread:packages
permission ONLY - Use
yarn
to install project dependencies.
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
- Runs .ts linter
- Runs .scss linter
- Runs unit tests with Vitest
- Runs end to end tests with Playwright
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
- .github
- .husky
- public
- scripts
- src
- test
- .env.example
- .eslintrc.json
- .gitignore
- .npmrc.template
- .pretierrc.json
- .stylelintignore
- .stylelintrc.json
- craco.config.js
- jest.config.js
- package.json
- README.md
- tailwind.config.js
- tsconfig.json
- yarn.lock
The /src folder contains the source code.
The subfolder /src/app organizes the code in a very similar way to Angular, grouping by feature related files in modules.
This project is organized following a visual and functional hierarchy approach. Each view (or page) has its own folder containing its specific components, styles, and logic. Additionally, reusable components, custom hooks, utilities, and global styles are stored in separate directories to enhance reusability and maintainability.
Example:
src/
├── components/ # Common reusable components across the application
│ ├── Button.tsx
│ ├── Modal.tsx
│ ├── Loader.tsx
│ └── index.ts
├── views/ # Main application views
│ ├── Login/ # Login view and its internal components
│ │ ├── LoginForm.tsx
│ │ ├── SocialLoginButtons.tsx
│ │ ├── styles.css
│ │ └── Login.tsx
│ ├── Signup/ # Signup view and its internal components
│ │ ├── SignupForm.tsx
│ │ ├── TermsCheckbox.tsx
│ │ ├── styles.css
│ │ └── Signup.tsx
│ ├── Home/ # Home view with its main components
│ │ ├── Topbar.tsx # Top navigation bar
│ │ ├── Sidenav.tsx # Side navigation menu
│ │ ├── Dashboard.tsx # Main panel of the Home view
│ │ ├── Settings/ # Settings (subfolder within Home)
│ │ │ ├── SettingsModal.tsx # Main settings page
│ │ │ ├── LanguageOptions.tsx
│ │ │ ├── ThemeSwitcher.tsx
│ │ │ └── styles.css
│ │ ├── styles.css # General styles for Home
│ │ └── Home.tsx # Main component for the Home view
│ └── NotFound/ # 404 or nonexistent route view
│ ├── NotFound.tsx
│ └── styles.css
├── hooks/ # Custom React hooks
│ ├── useAuth.ts
│ ├── useTheme.ts
│ └── useFetch.ts
├── services/ # Logic for interacting with external APIs or services
│ ├── authService.ts
│ └── userService.ts
├── utils/ # Utility functions and helpers
│ ├── formatDate.ts # Date formatting functions
│ └── validateForm.ts # Form validation helpers
├── styles/ # Global styles
│ ├── variables.scss
│ └── global.css
├── types/ # Global and component-specific types
│ └── global.d.ts # Global types (e.g., user, environment)
├── App.jsx # Main application entry point
└── index.ts
This folder contains common and reusable components that are used across different views, such as buttons, modals, or loaders. These are atomic components and are not tied to any specific view.
Each main application view has its own folder (e.g., Login
, Signup
, Home
). Inside each folder:
- Specific components related to the view are included at the same level.
- Local styles are kept in a dedicated CSS file.
- If a view contains complex subsections (e.g.,
Settings
withinHome
), they are organized in subfolders.
Custom React hooks that encapsulate reusable logic.
This folder contains logic for interacting with external APIs or services. It provides an abstraction layer for API calls or other external integrations.
Utility functions, global constants, and helpers that are not tied to React. These utilities can be used across the entire application.
Global styles and variables for consistent theming across the application.
This folder contains shared TypeScript types used throughout the project
This structure ensures modularity, scalability, and maintainability while making the codebase easy to navigate and extend. 🚀
It is important to add in the tailwind.config.js file, within the purge property, the list of classes that we are overriding within a Tailwind layer (components, utilities or base) for third-party packages (such as react-bootstrap)
For example, with this snippet we are telling to purge that we are overriding the react-bootstrap Dropdown and Tabs classes:
purge: {
content: ["./src/**/*.tsx"],
options: {
safelist: [
'dropdown-menu', 'dropdown-item',
'nav-item', 'nav-link', 'tab-content', 'tab-pane'
]
}
}
To speed up the development and maintenance of the project, it is recommended to use the following extensions for the IDE:
- Better Comments
- ESLint
- stylelint
- PostCSS Language Support
- SCSS Formatter
- Tailwind CSS IntelliSense