delay-cmd
v1.0.6
Published
Delay your commands on the command line using human intervals.
Readme
delay-cmd
Delay your commands on the command line using human intervals.
CLI Installation
npm i delay-cmd -gCLI Usage
delay-cmd five secondsPut the command you want to delay after the &&.
cd /c/path/to/yourProject
delay-cmd two hours && npm startnode.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
