This is special web-application to calculate user's typing speed.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
/public/
/src/
assets
app
components
hooks
utils
types
enums
contexts
public
- for static files.src
- application related files.app
- main folder with in-built router. It also contains modules (based on module architecture of Tao of React). Each module may have its own separate local components, hooks, utils etc.assets
- folder for assets (eg. fonts, images, icons etc.).components
- global (common) folder with reusable components.hooks
- global (common) folder with reusable hooks.utils
- global (common) folder with reusable utilities.contexts
- global (common) folder with reusable contexts.enums
- global (common) folder with reusable enums.types
- global (common) folder with reusable types & interfaces.
Utilizes TypeScript, Tailwind CSS