
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
buffered-async-iterable
Advanced tools
Buffered parallel processing of async iterables / generators.
import { bufferedAsyncMap } from 'buffered-async-iterable';
async function * asyncGenerator() {
yield ...
}
const mappedIterator = bufferedAsyncMap(asyncGenerator(), async (item) => {
// Apply additional async lookup / processing
});
for await (const item of mappedIterator) {
// Consume the buffered async iterable
}
import { bufferedAsyncMap } from 'buffered-async-iterable';
const mappedIterator = bufferedAsyncMap(['foo'], async (item) => {
// Apply additional async lookup / processing
});
for await (const item of mappedIterator) {
// Consume the buffered async iterable
}
import { bufferedAsyncMap } from 'buffered-async-iterable';
const mappedIterator = bufferedAsyncMap(['foo'], async function * (item) => {
// Apply additional async lookup / processing
yield ...
yield * ...
});
for await (const item of mappedIterator) {
// Consume the buffered async iterable
}
Iterates and applies the callback
to up to bufferSize
items from input
yielding values as they resolve.
bufferedAsyncMap(input, callback[, { bufferSize=6, ordered=false }]) => AsyncIterableIterator
input
โ either an async iterable, an ordinare iterable or an arraycallback(item)
โ should be either an async generator or an ordinary async function. Items from async generators are buffered in the main buffer and the buffer is refilled by the one that has least items in the current buffer (input
is considered equal to sub iterators in this regard when refilling the buffer)bufferSize
โ optional โ defaults to 6
, sets the max amount of simultanoeus items that processed at once in the buffer.ordered
โ optional โ defaults to false
, when true
the result will be returned in order instead of unorderedMerges all given (async) iterables in parallel, returning the values as they resolve
mergeIterables(input[, { bufferSize=6 }]) => AsyncIterableIterator
input
โ an array of async iterables, ordinare iterables and/or arraysbufferSize
โ optional โ defaults to 6
, sets the max amount of simultanoeus items that processed at once in the buffer.FAQs
Creates a prefetched async iterable
The npm package buffered-async-iterable receives a total of 11,464 weekly downloads. As such, buffered-async-iterable popularity was classified as popular.
We found that buffered-async-iterable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.ย It has 0 open source maintainers 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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.