asyncronaut
v1.6.2
Published
A collection of modules for working with common async tasks in node and the browser.
Downloads
2
Maintainers
Readme
asyncronaut
Asyncronaut is a hodgepodge of utilities to make working with common asynchronous tasks in JavaScript easier. It provides interfaces to effectively manage promises, task queues, pools, and streams, with advanced features like signal-based cancellation and discrete poll smoothing, retry, inspection and more.
For detailed usage and configuration options, please refer to the official asyncronaut
documentation.
Installation
npm i asyncronaut
Usage
Promises
import {
delay,
withTimeout,
withRetry,
withInspection,
createDecomposedPromise,
flushAllMicrotasks,
} from 'asyncronaut';
withTimeout
Adds timeout management to an existing promise that respects existing abortController signals.
import {withTimeout} from 'asyncronaut/promises';
// Create an AbortController
const abortController = new AbortController();
// Link the abort controller to the promise and the timeout.
const fetchWithTimeout = withTimeout(
fetch('https://api.mysite.com/long', {signal: abortController.signal}),
{
timeoutMs: 3000,
abortController,
}
);
fetchWithTimeout.catch((error) => {
// The request will automatically be cancelled when timeout hits.
console.log('Request timed out');
});
createDecomposedPromise
Creates a promise with exposed resolve and reject methods.
const {promise, resolve, reject} = createDecomposedPromise();
stream.on('error', reject);
stream.on('close', resolve);
return promise;
withRetry
Retries a promise-returning function in case of failure.
const action = () => fetch('https://api.mysite.com/data');
const actionWithRetry = withRetry(action, {
retries: 3,
cleanup: () => fetch('https://api.mysite.com/reset'),
});
flushAllMicrotasks
Flushes all pending microtasks from the queue.
Use case: In testing scenarios, we can ensure all microtasks are completed before asserting the test outcomes.
test('all microtasks are flushed', async () => {
// trigger some microtasks
Promise.resolve().then(() => console.log('Microtask completed'));
// flush all microtasks
await flushAllMicrotasks();
// Now we can assert the outcomes
});
withInspection
Augments a promise to enable synchronous inspection of its state.
const promise = fetch('https://api.mysite.com/data');
const inspectablePromise = withInspection(promise);
await delay(1_000);
if (!inspectablePromise.isDone()) {
// Fetch is still pending after 1 second.
}
Task Queue
import {TaskQueue} from 'asyncronaut';
TaskQueue
Creates a task queue with configurable concurrency and lifecycle events.
// Task processing function
const onTask = async (task) => {
const {id, request, signal} = task;
console.log(`Processing task: ${id}`);
const response = await fetch(request.input);
return response.json();
};
const taskQueue = new TaskQueue({onTask, maxConcurrentTasks: 5});
// In case of an error, destroy the queue...
taskQueue.on('error', (err) => taskQueue.drain());
for (let i = 0; i < 10; i++) {
taskQueue.enqueue(`https://api.mysite.com/resource/${i}`);
}
// Start processing tasks...
taskQueue.start();
// Later on...
taskQueue.pause();
// And later still...
taskQueue.start();
// Wait for all tasks in the queue to finish...
await taskQueue.waitForCompletion();
Streams
import {
fromNode,
createSmoothStreamViaPoll,
CHARACTER_SMOOTH_STREAM_OPTIONS,
} from 'asyncronaut/streams/web';
fromNode
Converts a Node.js readable stream to a web readable stream.
const nodeStream = fs.createReadStream('/path/to/file');
const webStream = fromNode(nodeStream);
createSmoothStreamViaPoll
Creates a smooth stream of data fetched from a poll-based fetcher.
Use case: Continuously fetching state updates from a remote server and streaming them to the client. This could be used to create a real-time dashboard or live-updating visual display.
import {createSmoothStreamViaPoll, CHARACTER_SMOOTH_STREAM_OPTIONS} from 'asyncronaut/streams/web';
const options = {
...CHARACTER_SMOOTH_STREAM_OPTIONS,
poll: async () => {
// Fetch some text from a server
const response = await fetch('https://api.mysite.com/text');
const text = await response.text();
return {
state: text,
isDone: false, // or some condition to indicate completion
};
},
};
const textStream = createSmoothStreamViaPoll(options);
// Use smoothStream in a context expecting a web ReadableStream
License
Asyncronaut is MIT licensed.
Contributing to Asyncronaut
We welcome contributions from everyone. This section will guide you through the initial setup and the contribution process.
Prerequisites
You should have Node.js and npm installed on your system. We cross-publish our packages in CommonJS and ES Modules formats. Please note that we do not use ESM for Express dependencies due to compatibility issues.
Getting Started
Clone the repository:
git clone https://github.com/patrickhulce/asyncronaut.git cd asyncronaut
Install the dependencies:
npm install
Build the project:
npm run build
This will generate the TypeScript declaration files and build the project.
Coding Style
We enforce a consistent coding style using ESLint for TypeScript, along with Prettier for code formatting. We strongly recommend you install these tools in your code editor before you begin. Our configuration will automatically apply our coding standards.
Running Tests
We use Jest for unit testing. To run the tests:
npm test
This command will lint the code, check types, and then run all unit tests. If you prefer, you can run Jest in watch mode as you make changes:
npm run test:watch
Submitting Changes
Before submitting your changes, please ensure your code passes all tests and adheres to our coding style. Once you're ready, you can submit a pull request (PR) to the main repository.
We use GitHub Actions for continuous integration (CI). Whenever a PR is created, the CI checks will automatically run.
Release Process
We use Semantic Release for automatic versioning and publishing of our packages. This tool uses the commit messages to determine the type of changes in the codebase and performs a release accordingly. Therefore, we require all commit messages to follow the Conventional Commits specification.
Conclusion
Thank you for your interest in contributing to Asyncronaut! Please feel free to open an issue if you have any questions or run into any issues. We look forward to your contributions!
Roadmap
- promises
fromEvent
- streams
- node stream destroy
- browsers / e2e
- browserPool
- pagePool
- renderPipeline
- test helpers
- taskQueue
- maxQueuedTaskDuration
- postMessage / distributed support