A typing test and practice tool made specifically for developers. Learn to type faster and more accurately by practicing with real keywords from your favorite programming language.
- React
- Redux
- Chakra UI
To use the app, you can head over to the official website
Make sure you have node installed. You can check which version of node you're using by running the following command.
node -v
We recommend using the lts(Long-term Support) version of node.
git clone https://github.com/staranbeer/typo.git
cd css-generator
npm install
npm run start
All kinds of suggestions and contributions are welcome
To contribute, you can fork the project repository so that you can have your own copy of the project on your github.
-
Go to the repository on GitHub: https://github.com/staranbeer/typo
-
Click the "Fork" Button in the upper right-hand corner of the interface.
-
After the repository has been forked, you will be taken to your copy of the
typo
repository -
Now you can clone the repository locally by running the following command on your terminal.
git clone https://github.com/YOUR_USER_NAME/typo.git
- Check out a new branch so you don't make changes to the main branch.
git checkout -b your-branch-name
- You can commit any changes you make by running:
git add .
git commit -m "i changed something"
- After you're done commiting your changes, you can push changes to your branch by running.
git push origin <your-branch-name>
- Now, go to your repository on github and click on the compare and pull request button.
After your changes are approved, They will be merged with the primary codebase.