GithubHelp home page GithubHelp logo

indece-official / ts-delay Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 2 KB

Typescript library to delay something by a minimum amount of time

TypeScript 100.00%
delay javascript nodejs ts typescript utilities

ts-delay's Introduction

TS-Delay

Typescript library to delay something by a minimum amount of time

Installation

npm install --save ts-delay

or

yarn add ts-delay

Examples

Delay

import { Delay } from 'ts-delay';

async function main ( )
{
    console.log('Checking for updates ...');

    const delay = new Delay(1000);

    // This function finishes fast, but the user thinks id does nothing
    // if it doesn't take a minimum amount of time. But if the function
    // takes longer than usual, we don't want the user to have to wait
    // additional time....
    await checkForUpdates();

    // Wait 1000ms minus the time that already passed
    await delay.sleep();

    console.log('Finished checking for updates.');
}

sleep

import { sleep } from 'ts-delay';

function async main ( )
{
    console.log('Running ...');

    await sleep(1000);

    console.log('Finished after 1s.');
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.