some-handy-hooks

Bunch of react.js hooks for your app

Usage no npm install needed!

<script type="module">
  import someHandyHooks from 'https://cdn.skypack.dev/some-handy-hooks';
</script>

README

npm npm bundle size Build Status codecov dependabot badge semantic-release Commitizen friendly

some-handy-hooks

Bunch of handy hooks for your react application!

yarn add some-handy-hooks

# or with npm

npm install some-handy-hooks --save

useCountdown() hook

Creates a countdown with 1 sec interval, that will return on each render complete set of time variables as well as total time elapsed + onFinish callback can be passed to handle the logic.

import { useCountdown } from 'some-handy-hooks'

const { seconds, minutes, totalSeconds } = useCountdown({minutes: 20})