javascript-timer
v1.0.6
Published
Simple countdown utility to get remaining days, hours, minutes, and seconds
Maintainers
Readme
Countdown
Simple countdown utility to get remaining days, hours, minutes, and seconds till a target date.
Installation
npm install javascript-timer
import { countDown } from "javascript-timer";
const result = countDown("2025-05-01T00:00:00Z");
console.log(result);
// Output:
// { days: 364, hours: 8, minutes: 22, seconds: 10 }