Rate limiting allows a configured number of executions within a time window. Calls run immediately while capacity remains. Once the limit is reached, later calls are rejected until capacity becomes available again.
TanStack Pacer provides an in-memory rate limiter intended primarily for client-side operations. It can run in server-side JavaScript, but it is not a distributed quota or enforcement system.
This example allows three executions per window:
Rate Limiting (limit: 3 calls per window)
Timeline: [1 second per tick]
Window 1 | Window 2
Calls: ⬇️ ⬇️ ⬇️ ⬇️ ⬇️ ⬇️ ⬇️
Executed: ✅ ✅ ✅ ❌ ❌ ✅ ✅
[=== 3 allowed ===][=== blocked until reset ===][=== new window ===]Rate limiting permits bursts. It does not space accepted calls evenly.
Choose rate limiting when:
Choose another utility when:
The windowType option controls when capacity returns.
A fixed window starts when its first execution is accepted. All accepted executions remain counted until that window ends. Capacity then resets together.
const limiter = useRateLimiter(sendEvent, {
limit: 3,
window: 1000,
windowType: 'fixed',
})Fixed windows can allow bursts near a boundary because a full quota becomes available when the window resets.
A sliding window tracks each accepted execution separately. Capacity returns one execution at a time as old timestamps leave the window.
Sliding Window (limit: 3 calls per window)
Timeline: [1 second per tick]
Calls: ⬇️ ⬇️ ⬇️ ⬇️ ⬇️
Executed: ✅ ✅ ✅ ❌ ✅
[=== full ===][oldest execution expires][=== one available ===]const limiter = useRateLimiter(sendEvent, {
limit: 3,
window: 1000,
windowType: 'sliding',
})Use a sliding window when capacity should return gradually rather than all at once.
Use the callback API for operations, the state or value API for quota-controlled UI updates, and the instance API when you need capacity helpers or rejection state.
import { useRateLimiter } from '@tanstack/preact-pacer'
function SendButton() {
const limiter = useRateLimiter(
sendEvent,
{ limit: 3, window: 10_000 },
(state) => ({
rejectionCount: state.rejectionCount,
}),
)
return (
<button onClick={() => limiter.maybeExecute('clicked')}>
Send ({limiter.state.rejectionCount} rejected)
</button>
)
}The focused snippets later in this guide use useRateLimiter and assume they run inside a component or another hook.
Rejected calls do not run later. Use the boolean return value or onReject to provide feedback, retry elsewhere, or place work into a queue.
const limiter = useRateLimiter(sendEvent, {
limit: 2,
window: 1000,
onReject: (limiter) => {
console.log('Rejected calls:', limiter.store.state.rejectionCount)
},
})If rejected operations must eventually run, a queuer is usually a better fit.
The instance API provides two computed helpers:
limiter.getRemainingInWindow() // Accepted executions still available.
limiter.getMsUntilNextWindow() // Time until at least one execution is available.Both helpers use the current limit, window, windowType, and execution history.
reset() clears execution timestamps, counters, and cleanup timers. The next call starts with full capacity.
limiter.reset()Use setOptions() to update the configuration:
limiter.setOptions({
limit: 10,
window: 30_000,
})Changing options does not erase existing execution history. Call reset() when the new configuration should begin with a fresh window.
The enabled, limit, and window options may be functions that receive the limiter instance:
const limiter = useRateLimiter(sendEvent, {
enabled: (limiter) => limiter.store.state.executionCount < 100,
limit: (limiter) => (limiter.store.state.rejectionCount > 10 ? 2 : 5),
window: 60_000,
})Disabling the limiter prevents the wrapped function from executing. It does not delete existing execution history.
onExecute receives the executed arguments and limiter instance. onReject receives the limiter instance.
const limiter = useRateLimiter(sendEvent, {
limit: 5,
window: 1000,
onExecute: (args, limiter) => {
console.log('Sent:', args)
console.log('Remaining:', limiter.getRemainingInWindow())
},
onReject: (limiter) => {
console.log('Rejected:', limiter.store.state.rejectionCount)
},
})The adapter has no default operation cleanup because a synchronous limiter has no pending or active work. Use onUnmount only when the component needs custom teardown related to the limiter.
The adapter subscribes only to the state returned by the selector argument. Without a selector, the adapter state is empty. Create the utility at the top level of a component or another hook and select only fields used by the view:
const limiter = useRateLimiter(
sendEvent,
{ limit: 5, window: 60_000 },
(state) => ({
isExceeded: state.isExceeded,
rejectionCount: state.rejectionCount,
}),
)
console.log(limiter.state.isExceeded, limiter.state.rejectionCount)Option functions and lifecycle callbacks receive the underlying public utility instance. The .store.state reads inside those callbacks in the examples above are supported. Rendering code should read the selected adapter state shown here.
To restore selected state that your app has persisted, pass a partial snapshot through initialState. It is merged with the defaults. Restore only durable fields. Pending timers are not restored.
Commonly useful state includes:
See the Preact API reference for adapter signatures and the public core reference for complete option and state types.