npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

modern-api.timer

v0.2.0-beta.2

Published

Timer APIs based on Promise, setTimeout, setInterval

Downloads

13

Readme

modern-api.timer

Timer APIs based on Promise, setTimeout, setInterval

Install

$ npm i modern-api.timer

Usage

sleep for n ms

import { sleep } from 'modern-api.timer'

(async() => {
  const now = +new Date()
  await sleep(1000)
  console.log(+new Date() - now) // 1000
})()

timeout over n ms

import { sleep, timeout } from 'modern-api.timer'

(async() => {
  await timeout(sleep(1000), 2000) // no error
  await timeout(sleep(1000), 500) // reject error: 'timeout over 500ms'
})()

pasue and resume setTimeout

import { pauseTimeout } from 'modern-api.timer'

(async () => {
  const timer = pauseTimeout(() => console.log('done'), 1000) // timer.isActive = true

  await sleep(500)
  timer.pause() // pause timing, timer.isActive = false

  await sleep(500) // log nothing

  timer.resume() // resume timing, timer.isActive = true

  await sleep(500) // log 'done'
})()

stop setTimeout whenever you don't want to continue

import { pauseTimeout } from 'modern-api.timer'

(async () => {
  const timer = pauseTimeout(() => console.log('done'), 1000) // timer.isActive = true

  await sleep(500)
  timer.stop() // stop timing, timer.isActive = false

  await sleep(500) // log nothing

  timer.resume() // resume not work after stopping, timer.isActive = false

  await sleep(500) // log nothing
})()

pasue and resume setInterval

import { pauseInterval } from 'modern-api.timer'

(async () => {
  const timer = pauseInterval(() => console.log('tick'), 1000) // timer.isActive = true

  await sleep(500)
  timer.pause() // pause polling, timer.isActive = false

  await sleep(500) // log nothing

  timer.resume() // resume polling, timer.isActive = true

  await sleep(1000) // log 'tick', timer.isActive = true
  await sleep(1000) // log 'tick', timer.isActive = true
})()

stop setInterval whenever you don't want to continue

import { pauseInterval } from 'modern-api.timer'

(async () => {
  const timer = pauseInterval(() => console.log('tick'), 1000) // timer.isActive = true

  await sleep(500)
  timer.stop() // stop polling, timer.isActive = false

  await sleep(500) //  log nothing

  timer.resume() // resume not work after stopping, timer.isActive = false

  await sleep(1000) // log nothing
  await sleep(1000) // log nothing
})()

API

/**
 * sleep for n ms
 *
 * @param {number} delay - sleep delay, ms
 * @returns {Promise<void>}
 */
declare const sleep: (delay: number) => Promise<unknown>;
/**
 * reject if Promise timeout, otherwise return Promise result
 *
 * @template {T} = Promise return value type
 * @param {PromiseLike<T>} value - Promise instance
 * @param {number} delay - timeout limit
 * @param {Error} error - timeout error, default new Error(`timeout over ${delay}ms`)
 * @returns {Promise<T>}
 */
declare const timeout: <T>(value: PromiseLike<T>, delay: number, error?: Error) => Promise<unknown>;
/**
 * pausable `setTimeout`
 *
 * @typedef {Object} Timer
 * @property {boolean} isActive - whether `setTimeout` is timing
 * @property {() => void} pause - `setTimeout` stop timing temporarily
 * @property {() => void} resume - `setTimeout` continue timing
 * @property {() => void} stop - `setTimeout` stop timing permanently
 *
 * @param {() => any} callback - `setTimeout` callback
 * @param {number} delay - `setTimeout` delay, ms
 * @returns {Timer}
 */
declare const pauseTimeout: (callback: () => any, delay: number) => {
    isActive: boolean;
    pause: () => void;
    resume: () => void;
    stop: () => void;
};
/**
 * pausable and safer `setInterval` \
 * - more flexible \
 * - make sure callback invoke execute in order \
 * - make sure no callback invoke missed \
 * - make sure callback invoke frequency as stable as possible
 *
 * @typedef {Object} Timer
 * @property {boolean} isActive - whether `setInterval` is polling
 * @property {() => void} pause - `setInterval` stop polling temporarily
 * @property {() => void} resume - `setInterval` continue polling
 * @property {() => void} stop - `setInterval` stop polling permanently
 *
 * @param {() => any} callback - `setInterval` callback
 * @param {number} delay - `setInterval` delay, ms
 * @returns {Timer}
 */
declare const pauseInterval: (callback: () => any, delay: number) => {
    isActive: boolean;
    pause: () => void;
    resume: () => void;
    stop: () => void;
};