react-typing-test
v0.8.0
Published
A react component typing test, user input and wpm calculations.
Downloads
28
Maintainers
Readme
React Typing Test
Usage
npm install react-typing-test
// something.js
import { TypingTest } from 'react-typing-test';
const Something = (props) => {
return (
<TypingTest language="english" wordLimit={120} />
)
}
export default Something;
Available Props
wordLimit: {
type: Number
default: 50
}
language: {
type: String
default: 'english'
}
theme: {
type: String
default: 'Purpleish'
}
TODO
Fix the themes:
- main text color and input color should be different
- correct vs incorrect colors aren't always great
- maybe some gradients
Roadmap
- [x] word count
- [x] language (untested)
- [x] themes
- [ ] Clean and Refactor ...