Skip to content

Commit 38f6648

Browse files
committed
Updated wiki and README.
1 parent 03f5b2c commit 38f6648

File tree

2 files changed

+26
-295
lines changed

2 files changed

+26
-295
lines changed

README.md

+25-294
Original file line numberDiff line numberDiff line change
@@ -3,45 +3,18 @@
33
[npm-img]: https://img.shields.io/npm/v/time-queues.svg
44
[npm-url]: https://npmjs.org/package/time-queues
55

6-
`time-queues` is an efficient library for organizing asynchronous multitasking and scheduled tasks.
7-
It can be used in a browser and in server-side environments like `Node`, `Deno` and `Bun`.
8-
It depends only on [list-toolkit](https://github.com/uhop/list-toolkit), which is a no-dependency library for efficient task queues.
96

10-
The following features are provided:
7+
`time-queues` is an efficient, lightweight library for organizing asynchronous multitasking and scheduled tasks in JavaScript applications. It works seamlessly in browsers and server-side environments like Node.js, Deno, and Bun.
118

12-
* All environments:
13-
* **Scheduler**: a `MinHeap`-based task queue that schedules time-based tasks in the future.
14-
* **repeat()**: a function that creates a repeatable task.
15-
* **defer()**: a function that executes a task at a later time in the next tick.
16-
* Browsers:
17-
* Efficient multitasking:
18-
* **IdleQueue**: a task queue that executes tasks in the next idle period.
19-
* Based on [requestIdleCallback()](https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback).
20-
* **defer()**: a function that executes a task at a later time in the next idle period.
21-
* **FrameQueue**: a task queue that executes tasks in the next frame.
22-
* Based on [requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame).
23-
* Page state management:
24-
* **PageWatcher**: a task queue that executes tasks when the page state changes.
25-
* **watchStates()**: a helper that pauses and resumes queues when the page state changes.
26-
* **whenDomLoaded()**: a helper that executes tasks when the DOM is loaded.
27-
* **whenLoaded()**: a helper that executes tasks when the page is loaded.
9+
The library provides elegant solutions for common timing and scheduling challenges, helping developers create responsive, efficient applications that follow best practices for resource management and user experience.
2810

29-
Internally it uses [List Toolkit](https://github.com/uhop/list-toolkit) and leverages the following browser APIs:
11+
## Key Features
3012

31-
* [requestIdleCallback()](https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback)
32-
* [requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame)
33-
* [queueMicrotask()](https://developer.mozilla.org/en-US/docs/Web/API/queueMicrotask)
34-
* [setTimeout()](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout)
35-
* Various events and properties.
36-
37-
There are many articles on the subject that detail how to leverage the APIs writing efficient applications.
38-
Some of them are:
39-
40-
* [Background Tasks API](https://developer.mozilla.org/en-US/docs/Web/API/Background_Tasks_API)
41-
* [Page Visibility API](https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API)
42-
* [Page Lifecycle API](https://developer.chrome.com/docs/web-platform/page-lifecycle-api)
43-
44-
This package eliminates the need to write code that you'll write anyway following best practices.
13+
- **Efficient Task Scheduling**: Schedule tasks to run at specific times or after delays
14+
- **Browser Performance Optimization**: Execute tasks during idle periods or animation frames
15+
- **Page Lifecycle Management**: Respond intelligently to page visibility and focus changes
16+
- **Resource Management**: Control execution rates with throttling and debouncing
17+
- **Minimal Dependencies**: Relies only on [list-toolkit](https://www.npmjs.com/package/list-toolkit), a zero-dependency library
4518

4619
## Installation
4720

@@ -52,277 +25,35 @@ npm install time-queues
5225
If you want to check out the source code, you can use the following command:
5326

5427
```sh
55-
git clone https://github.com/uhop/time-queues.git
28+
git clone --recurse-submodules https://github.com/uhop/time-queues.git
5629
cd time-queues
5730
npm install
5831
```
5932

60-
Don't forget to look at a test web application that uses the library. For that you should start a server:
61-
62-
```sh
63-
npm start
64-
```
65-
66-
And navigate to [http://localhost:3000/tests/web/](http://localhost:3000/tests/web/) —
67-
don't forget to open the console and play around: switch tabs, make other window active,
68-
navigate away and come back, and so on.
69-
See how queues work in [tests/web/test.js](https://github.com/uhop/time-queues/blob/main/tests/web/test.js).
70-
7133
## Usage
7234

73-
The full documentation is available in the project's [wiki](https://github.com/uhop/time-queues/wiki). Below is a cheat sheet of the API.
74-
75-
### ListQueue
76-
77-
`ListQueue` is a list-based task queue that executes tasks in the order they were added.
78-
It serves as a base class for other task queues. The following methods are available:
79-
80-
| Method | Description |
81-
|:---|:---|
82-
| `ListQueue(paused)` | Create a new list queue (paused optionally). |
83-
| `isEmpty` | Check if the list queue is empty. |
84-
| `pause()` | Pause the list queue. |
85-
| `resume()` | Resume the list queue. |
86-
| `enqueue(fn)` | Schedule a function to be executed. Returns the task. |
87-
| `dequeue(task)` | Remove a task from the list queue. |
88-
| `clear()` | Remove all tasks from the list queue. |
89-
90-
Subclasses should implement `startQueue()`.
35+
The full documentation is available in the project's [wiki](https://github.com/uhop/time-queues/wiki). Below is the most important parts of the documentation:
9136

92-
### Scheduler
37+
### Resource Management
9338

94-
`Scheduler` is a `MinHeap`-based task queue that schedules time-based tasks in the future.
95-
It can used to run periodic updates or one-time events.
39+
- [Scheduler](https://github.com/uhop/time-queues/wiki/Scheduler): Time-based task scheduling
40+
- [Retainer](https://github.com/uhop/time-queues/wiki/Retainer): Manage resource lifecycle
41+
- [Throttler](https://github.com/uhop/time-queues/wiki/Throttler): Control execution rate based on keys
9642

97-
`Scheduler` is not based on `ListQueue`, but implements its API.
98-
The following additional methods are available:
43+
### Browser-Specific Components
9944

100-
| Method | Description |
101-
|:---|:---|
102-
| `Scheduler(paused)` | Create a new scheduler (paused optionally). |
103-
| `nextTime` | Get the next scheduled time or 'Infinity` if the scheduler is empty. |
104-
| `enqueue(fn, time)` | Schedule a function to be executed at a later time. Returns the task. `time` can be a date or a number in milliseconds from now. |
105-
106-
Scheduled functions are called once with the following arguments:
107-
108-
* `fn(task, scheduler)`, where:
109-
* `fn` — the scheduled function.
110-
* `task` — the task object that corresponds to the scheduled function.
111-
* `scheduler` — the scheduler object.
112-
113-
The return value is ignored.
114-
115-
The module provides a singleton ready to be used:
116-
117-
```js
118-
import scheduler, {repeat} from 'time-queues/Scheduler.js';
119-
120-
// schedule a task
121-
const task = scheduler.enqueue(() => console.log('The first task'), 1000);
122-
123-
// run a task every second
124-
const hello = () => {
125-
console.log('Hello, world!');
126-
scheduler.enqueue(hello, 1000);
127-
};
128-
scheduler.enqueue(hello, 1000);
129-
130-
// pause the scheduler
131-
scheduler.pause();
132-
133-
// remove the first task
134-
scheduler.dequeue(task);
135-
136-
// remove all tasks
137-
scheduler.clear();
138-
```
45+
- [IdleQueue](https://github.com/uhop/time-queues/wiki/IdleQueue): Execute tasks during browser idle periods
46+
- [FrameQueue](https://github.com/uhop/time-queues/wiki/FrameQueue): Execute tasks during animation frames
47+
- [PageWatcher](https://github.com/uhop/time-queues/wiki/PageWatcher): Monitor and respond to page lifecycle changes
13948

140-
#### repeat()
141-
142-
The module provides a helper function `repeat()` that creates a repeatable task:
143-
144-
* `repeat(fn, interval)`, where:
145-
* `fn` — the scheduled function.
146-
* `interval` — the interval in milliseconds. If not specified the corresponding task delay is used.
147-
148-
We can rewrite the above example using `repeat()`:
149-
150-
```js
151-
// run a task every second
152-
scheduler.enqueue(repeat(() => console.log('Hello, world!'), 1000));
153-
```
154-
155-
### defer()
156-
157-
`defer(fn)` is a function that executes an argument function at a later time in the next tick.
158-
159-
Deferred functions are called with no arguments. The return value is ignored.
160-
161-
```js
162-
import defer from 'time-queues/defer.js';
163-
164-
// run a task in the next tick
165-
defer(() => console.log('Goodbye, world!'));
166-
167-
// run code now
168-
console.log('Hello, world!');
169-
```
170-
171-
### IdleQueue
172-
173-
`IdleQueue` is a task queue that executes tasks in the next idle period. It implements `ListQueue` and is based on [requestIdleCallback()](https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback).
174-
175-
Efficient web applications should use `IdleQueue` to schedule computations required to prepare data and
176-
even create necessary DOM elements.
177-
See [Background Tasks API](https://developer.mozilla.org/en-US/docs/Web/API/Background_Tasks_API) for more information.
178-
179-
Queued functions are called once with the following arguments:
180-
181-
* `fn(deadline, task, idleQueue)`, where:
182-
* `fn` — the scheduled function.
183-
* `deadline` — the deadline object. See [requestIdleCallback()](https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback) for more information.
184-
* `task` — the task object that corresponds to the scheduled function.
185-
* `idleQueue` — the idle queue object.
186-
187-
The return value is ignored.
188-
189-
The module provides a singleton ready to be used:
190-
191-
```js
192-
import idleQueue from 'time-queues/IdleQueue.js';
193-
import frameQueue from 'time-queues/FrameQueue.js';
194-
195-
idleQueue.enqueue(() => {
196-
// prepare our data and generate DOM
197-
const div = document.createElement('div');
198-
div.appendChild(document.createTextNode('Hello, world!'));
199-
// now update the DOM in the next frame
200-
frameQueue.enqueue(() => document.body.appendChild(div));
201-
});
202-
```
49+
### Utility Functions
20350

204-
### FrameQueue
205-
206-
`FrameQueue` is a task queue that executes tasks in the next frame. It implements `ListQueue` and is based on [requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame).
207-
208-
Efficient web applications should use `FrameQueue` to schedule DOM updates.
209-
See [Background Tasks API](https://developer.mozilla.org/en-US/docs/Web/API/Background_Tasks_API) for more information.
210-
211-
Queued functions are called once with the following arguments:
212-
213-
* `fn(timeStamp, task, frameQueue)`, where:
214-
* `fn` — the scheduled function.
215-
* `timeStamp` — the timestamp object. See [requestAnimationFrame()](https://developer.mozilla.org/en-US/docs/Web/API/window/requestAnimationFrame) for more information.
216-
* `task` — the task object that corresponds to the scheduled function.
217-
* `frameQueue` — the frame queue object.
218-
219-
The return value is ignored.
220-
221-
The module provides a singleton ready to be used. See the code snippet `IdleQueue` above for more information.
222-
223-
### PageWatcher
224-
225-
`PageWatcher` is a task queue that executes tasks when the page state changes. It is based on [Page Visibility API](https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API).
226-
You can find more information in [Page Lifecycle API](https://developer.chrome.com/docs/web-platform/page-lifecycle-api).
227-
228-
Efficient web applications should use `PageWatcher` to watch for page visibility changes and react accordingly, for example, by suspending updates in the hidden state.
229-
230-
`PageWatcher` implements `ListQueue`. The following additional/changed methods are available:
231-
232-
| Method | Description |
233-
|:---|:---|
234-
| `PageWatcher(started)` | Create a new page watcher (started optionally). |
235-
| `currentState` | Get the current page state (see below). |
236-
| `enqueue(fn, initialize)` | Schedule a function to be executed. Returns the task. If `initialize` is truthy, the function will be queued and called immediately with the current state. |
237-
238-
A page state can be one of the following strings:
239-
240-
* `active` — the page is a current window, it is visible and the user can interact with it.
241-
* `passive` — the page is not a current window, it is visible, but the user cannot interact with it.
242-
* `hidden` — the page is not visible.
243-
* `frozen` — the page is suspended, no timers nor fetch callbacks can be executed.
244-
* `terminated` — the page is terminated, no new tasks can be started.
245-
246-
Queued functions are called on every state change with the following arguments:
247-
248-
* `fn(state, previousState, task, pageWatcher)`, where:
249-
* 'fn` — the scheduled function.
250-
* `state` — the new page state.
251-
* `previousState` — the previous page state.
252-
* `task` — the task object that corresponds to the scheduled function.
253-
* `pageWatcher` — the page watcher object.
254-
255-
The return value is ignored.
256-
257-
The module provides a singleton ready to be used.
258-
259-
```js
260-
import pageWatcher from 'time-queues/PageWatcher.js';
261-
262-
pageWatcher.enqueue(state => console.log('state:', state), true);
263-
```
264-
265-
#### watchStates()
266-
267-
`watchStates()` is a helper that pauses and resumes queues when the page state changes.
268-
It can be added to a `PageWatcher` object controlling a `Scheduler` object or any other queue
269-
to pause it depending on a page state.
270-
271-
The function signature is:
272-
273-
* `watchStates(queue, resumeStatesList = ['active'])`, where:
274-
* `queue` — the queue object to be controlled.
275-
* `resumeStatesList` — the iterable of page states to `resume()`. All other states will pause the queue. Defaults to 'active'.
276-
277-
The return value is a function that is suitable for `PageWatcher.enqueue()`.
278-
279-
```js
280-
import pageWatcher, {watchStates} from 'time-queues/PageWatcher.js';
281-
import scheduler from 'time-queues/Scheduler.js';
282-
283-
// do not process time-based tasks when the page is not visible
284-
pageWatcher.enqueue(watchStates(scheduler, ['active', 'passive']), true);
285-
```
286-
287-
### whenDomLoaded()
288-
289-
`whenDomLoaded()` is a helper that executes a function when the DOM is loaded.
290-
If the DOM is already loaded, the function will be executed with `queueMicrotask()`.
291-
Otherwise it'll be queued and executed when the DOM is loaded.
292-
See [DOMContentLoaded](https://developer.mozilla.org/en-US/docs/Web/API/Document/DOMContentLoaded_event) for more information.
293-
294-
The function signature is:
295-
296-
* `whenDomLoaded(fn)`, where:
297-
* `fn` — the function to be executed when the DOM is loaded.
298-
299-
It will be called with no arguments. The return value is ignored.
300-
301-
```js
302-
import whenDomLoaded from 'time-queues/whenDomLoaded.js';
303-
304-
whenDomLoaded(() => console.log('The DOM is loaded'));
305-
```
306-
307-
### whenLoaded()
308-
309-
`whenLoaded()` is a helper that executes a function when the page is fully loaded.
310-
If the page is already loaded, the function will be executed with `queueMicrotask()`.
311-
Otherwise it'll be queued and executed when the page is loaded.
312-
See [load](https://developer.mozilla.org/en-US/docs/Web/Events/load) for more information.
313-
314-
The function signature is:
315-
316-
* `whenLoaded(fn)`, where:
317-
* `fn` — the function to be executed when the page is loaded.
318-
319-
It will be called with no arguments. The return value is ignored.
320-
321-
```js
322-
import whenLoaded from 'time-queues/whenLoaded.js';
323-
324-
whenLoaded(() => console.log('The page is loaded'));
325-
```
51+
- [defer()](<https://github.com/uhop/time-queues/wiki/defer()>): Execute tasks in the next tick
52+
- [sleep()](<https://github.com/uhop/time-queues/wiki/sleep()>): Promise-based delay function
53+
- [throttle()](<https://github.com/uhop/time-queues/wiki/throttle()>): Limit function execution rate
54+
- [debounce()](<https://github.com/uhop/time-queues/wiki/debounce()>): Delay function execution until input stabilizes
55+
- [sample()](<https://github.com/uhop/time-queues/wiki/sample()>): Execute function at regular intervals
56+
- [audit()](<https://github.com/uhop/time-queues/wiki/audit()>): Execute function after specified delay
32657

32758
## License
32859

wiki

Submodule wiki updated from cca5508 to eb82d04

0 commit comments

Comments
 (0)