Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ coverage
.next
.svelte-kit

# developer-specific VS Code config files
.vscode/tasks.json
.vscode/launch.json

npm-debug.log*
yarn-debug.log*
yarn-error.log*
Expand Down
9 changes: 7 additions & 2 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: Quick Start
id: quick-start
---

TanStack Pacer is, first and foremost, a framework-agnostic utility library for rate limiting, throttling, debouncing, and queuing.
This page contains links to the the highest-level example for each of Tanstack Pacer's 4 core concepts:

It can be used with any of our framework adapters, but can also be used in vanilla JavaScript or TypeScript.
* [Debouncing](./guides/debouncing.md): [`useDebouncedValue`](../examples/react/useDebouncedValue/)
* [Throttling](./guides/throttling.md): [`useThrottledValue`](../examples/react/useThrottledValue/)
* [Rate-limiting](./guides/rate-limiting.md): [`useRateLimitedValue`](../examples/react/useRateLimitedValue/)
* [Queueing](./guides/queueing.md): [`useQueuerState`](../examples/react/useQueuerState/)

If you're looking lower-level examples or `async` examples, take a look at our catalog of [examples](../examples/).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

going to need to not link to the root examples directory. It's kind of a bug that this doesn't redirect right now.