countdown-pkg

1.0.1 • Public • Published

Countdown Timer

This npm package provides a countdown timer that can be used in Node.js applications. It allows you to set a specific date and time and execute a callback function when the countdown ends.

Installation

To install the package, run the following command:

npm install countdown-pkg

Usage

To use the countdown timer in your Node.js application, import it into your code:

const runCountDown = require('countdown-pkg')

Then, create a callback function to execute when the timer ends:

const myCallback = () =>{
    console.log('The countdown has ended')
}

Finally, call the runCountDown function with the desired end date and time and the callback function:

runCountDown('2023-06-16','19:32:50', myCallback)

The timer will countdown to the specified date and time and execute the callback function when it ends.

License

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i countdown-pkg

    Weekly Downloads

    2

    Version

    1.0.1

    License

    ISC

    Unpacked Size

    1.82 kB

    Total Files

    5

    Last publish

    Collaborators

    • gtchakama