Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
InBatches is a zero-dependency TypeScript library that provides a convenient way to batch and execute asynchronous operations in a controlled manner. This library is especially useful for scenarios where you need to perform multiple asynchronous operation
InBatches is a zero-dependency TypeScript library that provides a convenient way to batch and execute asynchronous operations in a controlled manner. This library is especially useful for scenarios where you need to perform multiple asynchronous operations efficiently, such as when making network requests or performing database queries.
Heavily inspired by graphql/dataloader but better 😜
npm install inbatches
import { Batcher } from 'inbatches';
// Define a class that extends Batcher and implements the `run` method
class MyBatcher extends Batcher<number, string> {
async run(ids: number[]): Promise<string[]> {
// Perform asynchronous operations using the keys
// you must return an array of results in the same order as the keys
return this.db.getMany(ids);
}
}
// Create an instance of your batcher
const batcher = new MyBatcher();
// Enqueue keys for batching and execution
const resultPromise1 = batcher.enqueue(1);
const resultPromise2 = batcher.enqueue(2);
resultPromise1.then(result => {
console.log(result); // Output: "{ id: 1, name: 'Result for key 1' }"
});
resultPromise2.then(result => {
console.log(result); // Output: "{ id: 2, name: 'Result for key 2' }"
});
@InBatches
DecoratorThe library also provides a decorator called InBatches
that you can use to batch-enable methods of your class.
import { InBatches } from 'inbatches';
class MyService {
@InBatches()
async fetch(keys: number | number[]): Promise<string | string[]> {
// This method is now batch-enabled
// Perform asynchronous operations using the keys
if (Array.isArray(keys)) {
return this.db.getMany(keys);
}
// the Decorator will wrap this method and because of that it will never be called with a single key
throw new Error('It will never be called with a single key 😉');
}
}
const service = new MyService();
// Enqueue keys for batching and execution
const resultPromise1 = service.fetch(1);
const resultPromise2 = service.fetch(2);
resultPromise1.then(results => {
console.log(results); // Output: { id: 1, name: 'Result for key 1' }
});
resultPromise2.then(results => {
console.log(results); // Output: { id: 2, name: 'Result for key 2' }
});
BatcherOptions
An interface to specify options for the batcher.
maxBatchSize
: The maximum number of keys to batch together. Default is 25
.delayWindowInMs
: The delay window in milliseconds before dispatching the batch. Default is undefined
.Batcher<K, V>
ClassAn abstract class that provides the core functionality for batching and executing asynchronous operations.
enqueue(key: K): Promise<V>
: Enqueues a key for batching and returns a promise that resolves to the result when
available.InBatches
DecoratorA decorator function that can be applied to methods to enable batching.
Usage: @InBatches(options?: BatcherOptions)
Example:
class MyService {
@InBatches({ maxBatchSize: 10 })
async fetchResults(keys: number | number[]): Promise<string | string[]> {
// Batch-enabled method logic
}
}
Contributions are welcome! Feel free to open issues or submit pull requests on the GitHub repository.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
InBatches is a zero-dependency generic TypeScript library that provides a convenient way to batch executions that runs asynchronous.
The npm package inbatches receives a total of 65 weekly downloads. As such, inbatches popularity was classified as not popular.
We found that inbatches 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.