delay-cmd

1.0.6 • Public • Published

delay-cmd

Delay your commands on the command line using human intervals.

CLI Installation

npm i delay-cmd -g

CLI Usage

delay-cmd five seconds

Put the command you want to delay after the &&.

cd /c/path/to/yourProject
delay-cmd two hours && npm start

node.js Usage

Must be used in an async function.

const delayCmd = require("delay-cmd");
await delayCmd("five seconds");

I made delay-cmd as a CLI. For node.js use I recommend implementing this:

//setup
const delay = require("delay");
const humanInterval = require("human-interval");

async function delayCmd(time) {
  console.log("waiting for" + time);
  await delay(humanInterval(time));
}

//usage
await delayCmd("five seconds");

Tip me!

If you appreciate my work please tip me! Any amount is good. Thank you :)

Patreon: https://www.patreon.com/qashto
Paypal: https://www.paypal.me/qashto/5

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i delay-cmd

    Weekly Downloads

    70

    Version

    1.0.6

    License

    MIT

    Unpacked Size

    3.24 kB

    Total Files

    5

    Last publish

    Collaborators

    • qashto