
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@ilteoood/re-flusso
Advanced tools
re-flusso is an utility library to operate with JavaScript Streams API.
It aims to support browsers, Node.js and Edge Runtime.
npm install @ilteoood/re-flusso
pnpm install @ilteoood/re-flusso
const { fromArray } = require('@ilteoood/re-flusso/fromArray');
import { fromArray } from '@ilteoood/re-flusso/fromArray';
import { accumulator } from '@ilteoood/re-flusso/accumulator';
const chunkSize = 3;
.pipeThrough(
accumulator(chunkSize)
)
import { concat } from '@ilteoood/re-flusso/concat';
concat(
fromIterable([1]),
fromIterable([2]),
fromIterable([3])
)
import { defaultTo } from '@ilteoood/re-flusso/defaultTo';
await pipeline(
fromIterable([null, undefined]),
defaultTo(1),
toIterable([])
)
import { text } from '@ilteoood/re-flusso/fetch/text';
const response = await fetch('...')
text(response)
import { filter } from '@ilteoood/re-flusso/filter';
.pipeThrough(
filter((value, index) => value % index === 0)
)
import { first } from '@ilteoood/re-flusso/first';
const firstItemsToKeep = 3;
.pipeThrough(
first(firstItemsToKeep)
)
import { fromIterable } from '@ilteoood/re-flusso/fromIterable';
// With an array
fromIterable([1, 2, 3])
// With a set
fromIterable(new Set([1, 2, 3]))
import { last } from '@ilteoood/re-flusso/last';
const lastItemsToKeep = 3;
.pipeThrough(
last(lastItemsToKeep)
)
import { map } from '@ilteoood/re-flusso/map';
.pipeThrough(
map((value, index) => value + index)
)
import { merge } from '@ilteoood/re-flusso/merge';
merge(
fromIterable([1]),
fromIterable([2]),
fromIterable([3])
)
import { parse } from '@ilteoood/re-flusso/ndJson/parse';
.pipeThrough(
parse()
)
import { stringify } from '@ilteoood/re-flusso/ndJson/stringify';
.pipeThrough(
stringify()
)
import { notEmpty } from '@ilteoood/re-flusso/notEmpty';
const errorToThrow = new Error('Stream is empty');
.pipeThrough(
notEmpty(errorToThrow)
)
import { fromRange } from '@ilteoood/re-flusso/numbers/fromRange';
fromRange(1, 3)
import { greaterThan } from '@ilteoood/re-flusso/numbers/greaterThan';
greaterThan(3)
import { greaterThanEqual } from '@ilteoood/re-flusso/numbers/greaterThanEqual';
greaterThanEqual(3)
import { lessThan } from '@ilteoood/re-flusso/numbers/lessThan';
lessThan(3)
import { lessThanEqual } from '@ilteoood/re-flusso/numbers/lessThanEqual';
lessThanEqual(3)
import { pipeline } from '@ilteoood/re-flusso/pipeline';
const destinationArray = [];
await pipeline(
fromIterable([1, 2, 3]),
map((value) => value * 2),
toArray(destinationArray),
);
import { reduce } from '@ilteoood/re-flusso/reduce';
const destinationArray = [];
await pipeline(
fromIterable([1, 2, 3]),
reduce((accumulator, value) => accumulator + value, 0),
toArray(destinationArray),
);
import { repeat } from '@ilteoood/re-flusso/repeat';
repeat('1', 3)
import { skip } from '@ilteoood/re-flusso/skip';
const itemsToSkip = 2;
.pipeTo(
skip(itemsToSkip)
)
import { join } from '@ilteoood/re-flusso/strings/join';
const separator = ',';
.pipeThrough(
join(separator)
)
import { split } from '@ilteoood/re-flusso/strings/split';
const separator = ',';
.pipeTo(
split(separator)
)
import { toLowerCase } from '@ilteoood/re-flusso/strings/toLowerCase';
.pipeThrough(
toLowerCase(separator)
)
import { toUpperCase } from '@ilteoood/re-flusso/strings/toUpperCase';
.pipeThrough(
toUpperCase(separator)
)
import { toArray } from '@ilteoood/re-flusso/toArray';
const destinationArray = [];
.pipeTo(
toArray(destinationArray)
)
This project was kindly sponsored by Nearform.
FAQs
Utility library to operate with JavaScript Streams API
We found that @ilteoood/re-flusso 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.