We aim to have:
- An 'A' score on Maintainability Rating
- An 'A' score on Security Rating
- Less than 3% duplicated lines
- A 50% tests coverage
- 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.
Serves the built application locally to preview the production output. Open http://localhost:3000 to view it in the browser.
- Useful for testing the result of a production build.
- No hot reloading or development tools included.
Before running
yarn run preview
, make sure you have already built the application using:yarn run build
The preview command serves the latest build output, so if you haven't run build beforehand, it will either fail or serve outdated files.
- 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.
- .github
- .husky
- public
- scripts
- src
- test
- .env.example
- .eslintrc.json
- .gitignore
- .npmrc.template
- .pretierrc.json
- .stylelintignore
- .stylelintrc.json
- craco.config.js
- package.json
- README.md
- tailwind.config.js
- tsconfig.json
- yarn.lock
The /src folder contains the source code.
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
│ └── hooks/ # Custom Login React hooks
│ └── useAuth.ts
│ ├── 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
├── hooks/ # Custom React hooks
│ ├── 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