A TypeScript library providing enhanced timeout functions compatible with async/await patterns.
Go to file
2020-05-27 16:54:33 +00:00
.vscode fix(core): update 2020-05-27 16:06:07 +00:00
test fix(core): update 2019-11-03 17:11:24 +01:00
ts fix(core): update 2020-05-27 16:54:32 +00:00
.gitignore fix(core): update 2020-05-27 16:06:07 +00:00
.gitlab-ci.yml fix(core): update 2020-05-27 16:06:07 +00:00
npmextra.json fix(core): update 2020-05-27 16:06:07 +00:00
package-lock.json 2.0.9 2020-05-27 16:54:33 +00:00
package.json 2.0.9 2020-05-27 16:54:33 +00:00
readme.md fix(core): update 2020-05-27 16:06:21 +00:00
tslint.json fix(core): update 2019-11-03 17:11:24 +01:00

@pushrocks/smartdelay

timeouts for the async/await era, written in TypeScript

Status for master

pipeline status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

import * as smartdelay from 'smartdelay';

(async () => {
  await smartdelay.delayFor(3000); // excution will halt here 3 seconds for this function scope BUT NOT BLOCK anything else
  console.log('hi there');

  // You can also go random
  await smartdelay.delayForRandom(2000, 6000); // this will delay exection somewhere between 2 and 6 seconds.
  console.log('Yay. You did not see me coming at this exact time');
})();

Contribution

We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can contribute one time or contribute monthly. :)

For further information read the linked docs at the top of this readme.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer