time-hooks
v0.1.2
Published
This library provides hooks to efficiently manage timer and other related time logic
Downloads
3
Readme
time-hooks
This library provides hooks to efficiently manage timer and other related time logic throughout your applications.
Install
npm install --save time-hooks
Usage
useTimer
import { useTimer } from 'time-hooks';
// ...
const [timer, start, stop, clear] = useTimer(1000);
// ...
useCountdownTimer
import { useCountdownTimer } from 'time-hooks';
// ...
const [countdown, start, stop, clear, add] = useCountdownTimer(15 * 60 * 1000, 1000);
// ...
License
MIT © nubinub