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

set-delayed-interval

v1.0.0

Published

An asynchronous setInterval that is properly delayed using promises and can be delayed on boot

Downloads

24,552

Readme

set-delayed-interval

Build Status dependencies Status JavaScript Style Guide

An asynchronous setInterval that is properly delayed using promises and can be delayed on boot

Motivation

The native implementation of setInterval expects synchronous functions to be executed. When asynchronous functions are provided, some unexpected behaviors might appear. This module mimics the setInterval native functionality with support for promises in a way that the interval timer is delayed by the execution of that promise. This results in equal stop times for each run, as soon as the promise is resolved.

For some scenarios, it is useful to add a start delay before running a recurrent task. This module also supports a custom delay before the interval starts. The clearDelayedInterval can stop both the initial delay and the interval.

Install

npm i set-delayed-interval

Usage

const { setDelayedInterval, clearDelayedInterval } = require('set-delayed-interval')

const task = async () => {
  /// ....
}

// After 100ms, run the task recurrently with 50ms intervals
const id = setDelayedInterval(task, 50, 100)

// ...
clearDelayedInterval(id)

API

setDelayedInterval

Parameters

| Name | Type | Description | |--------|------|-------------| | task | () => Promise | recurrent task to run | | interval | number | interval between each task (in ms) | | [delay] | number | delay before first run (in ms). Defaults to interval. |

Returns

| Type | Description | |------|-------------| | string | interval id |

clearDelayedInterval

Parameters

| Name | Type | Description | |--------|------|-------------| | id | string | interval id to clear |

Error Handling

This module throws task errors on the global context. For handling your tasks errors, it is recommended to wrap the task async code with a try catch block, or your can catch the global errors with process.once('uncaughtException', (err) => {}) in Node.js or window.onerror = (err) => {} in the browser.

Contribute

Feel free to dive in! Open an issue or submit PRs.

License

MIT © Vasco Santos