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

idle-task-scheduler

v1.0.1

Published

## Overview

Downloads

6

Readme

Readme for idleTaskScheduler Library

Overview

The idleTaskScheduler library provides a higher-order function for efficiently scheduling asynchronous tasks. It leverages requestIdleCallback or setTimeout to execute tasks during idle times, ensuring the main thread is not blocked. This is particularly useful for preloading components or data in web applications without impacting user experience.

NOTE: Safari does not support requestIdleCallback and will use setTimeout instead.

Installation

npm install idle-task-scheduler

or

yarn add idle-task-scheduler

Usage

Importing the Library

import idleTaskScheduler from 'idle-task-scheduler';

Basic Usage

Wrap your promise function with idleTaskScheduler to schedule it during idle times:

const fetchData = () => {
  return new Promise((resolve) => {
    // Your asynchronous data fetching logic
    resolve(data);
  });
};

const scheduledFetch = idleTaskScheduler(fetchData);

With Custom Options

You can provide custom options such as timeout:

const scheduledFetch = idleTaskScheduler(fetchData, { timeout: 8000 });

API

idleTaskScheduler

  • Type: <Args extends unknown[], Return>(promiseFn: (...args: Args) => Promise<Return>, options?: Options) => Promise<Return>
  • Description: Schedules a promise function to execute during the browser's idle periods, minimizing impact on the main thread.

Parameters

  • promiseFn: The promise function containing your asynchronous task.
  • options: An optional object for configuration.
    • timeout: (Optional) The maximum time in milliseconds the task is allowed to run before returning. Defaults to 5000ms.

requestIdleCallback (Internal Use)

  • Description: A polyfill for requestIdleCallback, used when it's not available in the window object.
  • Parameters:
    • cb: The callback function to be executed.
    • options: An object containing the timeout property.

Compatibility

idleTaskScheduler is designed for use in web browser environments and checks for the presence of the window object.

Contributing

We welcome contributions to enhance the idleTaskScheduler library. Please refer to our contributing guidelines for more information.

License

This project is licensed under the MIT License. Check the LICENSE file for full details.


Note: Users should have a basic understanding of promises and asynchronous JavaScript to effectively utilize idleTaskScheduler. The library is particularly beneficial in scenarios where non-blocking operations are critical, such as in complex web applications.