0.8.0 • Published 8 months ago

react-typing-test v0.8.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

React Typing Test

Build

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

  • word count
  • language (untested)
  • themes
  • Clean and Refactor ...