This is a VITE + REACT + TypeScript project.
-
Clone the repository:
git clone https://github.com/roshidoniy/TimerApp.git
-
Navigate to the project directory:
cd TimerApp -
Install the dependencies:
npm install
-
Start the development server:
npm run dev
This will start the development server and open the application in your default web browser.
-
Build the production-ready assets:
npm run build
This will create an optimized, production-ready build in the
distfolder.
You can deploy the contents of the dist folder to your hosting platform of choice.
- VITE - A fast and opinionated build tool that serves as a frontend development tool.
- React - A JavaScript library for building user interfaces.
- TypeScript - A statically typed superset of JavaScript that compiles to plain JavaScript.
The project structure is as follows:
TimerApp/
├── src/
│ ├── components/
│ ├── hook/
│ ├── types/
│ ├── utils/
│ ├── App.tsx
│ └── main.tsx
├── public/
├── .gitignore
├── index.html
├── package.json
├── tsconfig.json
└── vite.config.ts
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Commit your changes.
- Push your branch to your forked repository.
- Submit a pull request.