Skip to content

Commit 3815167

Browse files
authoredJul 23, 2024··
docs: add usage example in README (#777)
1 parent 11863ec commit 3815167

File tree

1 file changed

+41
-4
lines changed

1 file changed

+41
-4
lines changed
 

‎packages/async-queue/README.md

+41-4
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,19 @@
1313

1414
</div>
1515

16-
## Description
16+
**Table of Contents**
1717

18-
Ever needed a queue for a set of promises? This is the package for you.
18+
- [Features](#features)
19+
- [Installation](#installation)
20+
- [Usage](#usage)
21+
- [Buy us some doughnuts](#buy-us-some-doughnuts)
22+
- [Contributors](#contributors)
1923

2024
## Features
2125

2226
- Written in TypeScript
2327
- Bundled with esbuild so it can be used in NodeJS and browsers
24-
- Offers CommonJS, ESM and UMD bundles
28+
- Offers CommonJS, ESM, and UMD bundles
2529
- Fully tested
2630

2731
## Installation
@@ -32,13 +36,46 @@ You can use the following command to install this package, or replace `npm insta
3236
npm install @sapphire/async-queue
3337
```
3438

39+
## Usage
40+
41+
**Note**: While this section uses `require`, the imports match 1:1 with ESM imports. For example `const { AsyncQueue } = require('@sapphire/async-queue')` equals `import { AsyncQueue } from '@sapphire/async-queue'`.
42+
43+
```typescript
44+
// Require the AsyncQueue class
45+
const { AsyncQueue } = require('@sapphire/async-queue');
46+
47+
const queue = new AsyncQueue();
48+
49+
async function request(url, options) {
50+
// Wait and lock the queue
51+
await queue.wait();
52+
53+
try {
54+
// Perform the operation sequentially
55+
return await fetch(url, options);
56+
} finally {
57+
// Unlock the next promise in the queue
58+
queue.shift();
59+
}
60+
}
61+
62+
request(someUrl1, someOptions1);
63+
// Will call fetch() immediately
64+
65+
request(someUrl2, someOptions2);
66+
// Will call fetch() after the first finished
67+
68+
request(someUrl3, someOptions3);
69+
// Will call fetch() after the second finished
70+
```
71+
3572
---
3673

3774
## Buy us some doughnuts
3875

3976
Sapphire Community is and always will be open source, even if we don't get donations. That being said, we know there are amazing people who may still want to donate just to show their appreciation. Thank you very much in advance!
4077

41-
We accept donations through Open Collective, Ko-fi, PayPal, Patreon and GitHub Sponsorships. You can use the buttons below to donate through your method of choice.
78+
We accept donations through Open Collective, Ko-fi, PayPal, Patreon, and GitHub Sponsorships. You can use the buttons below to donate through your method of choice.
4279

4380
| Donate With | Address |
4481
| :-------------: | :-------------------------------------------------: |

0 commit comments

Comments
 (0)
Please sign in to comment.