
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@triyanox/async-sequence
Advanced tools
A library for composing asynchronous operations in a sequence.
PromiseSequencer is a utility class that enables you to execute promises sequentially with concurrency and retry capabilities. It empowers you to manage promise execution order, concurrency, and handles retries and logging seamlessly.

Install PromiseSequencer using your preferred package manager:
# Using npm
npm install @triyanox/async-sequence
# Using Bun
bun add @triyanox/async-sequence
# Using Yarn
yarn add @triyanox/async-sequence
# Using PNPM
pnpm add @triyanox/async-sequence
import createPromiseSequencer from '@triyanox/async-sequence';
// Example usage
const promiseSequencer = createPromiseSequencer(
// add your promises here
[() => Promise.resolve('foo'), () => Promise.reject('bar')],
{
// the maximum number of promises that can run at the same time
concurrency: 2,
// the maximum number of times a task can be retried
retryAttempts: 3,
// the delay between retries
retryDelay: 1000,
// a logger that logs the status of the PromiseSequencer
logger: {
log: (level, message) => {
console.log(`[${level.toUpperCase()}] ${message}`);
},
},
// callbacks for when a task is completed, failed or retried
onTaskCompleted: (result) => {
console.log(`Task completed with result: ${result()}`);
},
onTaskFailed: (error) => {
console.log(`Task failed with error: ${error()}`);
},
onTaskRetried: (task) => {
console.log(`Task retried: ${task}`);
},
// whether to disable logs
disableLogs: false,
},
);
// use a custom generator
const promiseSequencer = createPromiseSequencer(
(function* custom() {
yield () => Promise.resolve('foo');
yield () => Promise.resolve('bar');
yield () => Promise.reject(new Error('baz'));
})(),
);
// start the PromiseSequencer
promiseSequencer.start();
// get the sequencer results
const results = await promiseSequencer.getResults();
// stop the PromiseSequencer
promiseSequencer.stop();
Represents different log levels for logging messages.
ERROR: Error log level.INFO: Information log level.DEBUG: Debug log level.A logger interface to implement custom logging behavior.
log(level: LogLevel, message: string): void: Logs a message at the specified log level.Options for configuring the PromiseSequencer.
promiseGenerator: A generator that yields promises.concurrency (optional): The number of promises to run concurrently. Default: 1.retryAttempts (optional): The number of times to retry a failed task. Default: 0.retryDelay (optional): The delay in milliseconds between retries. Default: 0.logger (optional): A logger instance for custom logging. Default: console.disableLogs (optional): Whether to disable logging. Default: false.onTaskCompleted (optional): A callback for task completion.onTaskFailed (optional): A callback for task failure.onTaskRetried (optional): A callback for task retries.throwOnErrors (optional): Whether to throw an error when a task fails. Default: false.A class for executing promises sequentially with concurrency and retry capabilities.
constructor(options: PromiseSequencerOptions<T>): Creates a new PromiseSequencer instance.start(): Promise<boolean>: Starts executing promises.stop(): Stops the PromiseSequencer.getQueue(): (() => Promise<T>)[]: Returns the current queue of tasks.getRunningTasks(): (() => Promise<T>)[]: Returns the current running tasks.getCompletedTasks(): (() => Promise<T>)[]: Returns the completed tasks.getFailedTasks(): (() => Promise<T>)[]: Returns the failed tasks.getRetryTasks(): (() => Promise<T>)[]: Returns the tasks that are currently being retried.getResults(): Promise<T[]>: Returns the results of the PromiseSequencer if the throwOnErrors option is set to false it will return null for the failed tasks if not it will throw an error.setCurrentConcurrency(concurrency: number): void: Sets the current concurrency.Creates a new PromiseSequencer instance.
promiseGenerator: A generator that yields promises.options (optional): Options for configuring the PromiseSequencer.This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A library for composing asynchronous operations in a sequence.
We found that @triyanox/async-sequence demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.