Skip to content
/ pacer Public

Utilities for debouncing, throttling, and queueing. Non-async and Async.

License

Notifications You must be signed in to change notification settings

TanStack/pacer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TanStack Pacer Header

TanStack Pacer v0

Utilities for debouncing, throttling, rate limiting, queuing, and more.

#TanStack semantic-release Join the discussion on Github

Enjoy this library?

Try other TanStack libraries:

Visit tanstack.com/pacer for docs, guides, API and more!

You may know TanSack Pacer by our adapter names, too!

Summary

Take control of your application's timing with TanStack Pacer's rate limiting, throttling, and debouncing utilities. Manage complex async workflows using intelligent queuing and concurrency controls while maintaining full control with built-in pause, resume, and cancel capabilities.

Quick Features

  • Debouncing
    • Delay functions execution until after a period of inactivity
    • Synchronous or Asynchronous Debounce utilities with promise support and error handling
  • Throttling
    • Limit the rate at which a function can fire
    • Synchronous or Asynchronous Throttle utilities with promise support and error handling
  • Rate Limiting
    • Limit the rate at which a function can fire
    • Synchronous or Asynchronous Rate Limiting utilities with promise support and error handling
  • Queuing
    • Queue functions to be executed in a specific order
    • Choose from FIFO, LIFO, and Priority queue implementations
    • Control processing with configurable wait times or concurrency limits
    • Manage queue execution with start/stop capabilities
    • Synchronous or Asynchronous Queue utilities with promise support and success, settled, and error, handling
  • Comparison Utilities
    • Perform deep equality checks between values
    • Create custom comparison logic for specific needs
  • Convenient Hooks
    • Reduce boilerplate code with pre-built hooks like useDebouncedCallback, useThrottledValue, and useQueuerState, and more.
  • Type Safety
    • Full type safety with TypeScript that makes sure that your functions will always be called with the correct arguments
    • Generics for flexible and reusable utilities
  • Framework Adapters
    • React, Solid, and more
  • Tree Shaking
    • We, of course, get tree-shaking right for your applications by default, but we also provide extra deep imports for each utility, making it easier to embed these utilities into your libraries without increasing the bundle-phobia reports of your library.

Installation

Install one of the following packages based on your framework of choice:

# Npm
npm install @tanstack/react-pacer
npm install @tanstack/pacer # no framework, just vanilla js

How to help?

Releases

No releases published

Sponsor this project