npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bibhas/quick-stream

v1.0.0

Published

JavaScript Array has filter(), map() etc. methods. But they each create a new array. This adds unnecessary overhead. This stream library attempts to fix that problem. It has constant memory complexity. Meaning, processing a large array as a stream adds no

Downloads

8

Readme

Stream.js

JavaScript Array has filter(), map() etc. methods. But they each create a new array. This adds unnecessary overhead. This stream library attempts to fix that problem. It has constant memory complexity. Meaning, processing a large array as a stream adds no extra memory overhead.

In addition to lower memory usage, there are plenty of other benefits to this stream library.

  1. Adds support for skipping, limiting and zipping that are otherwise missing in an array.
  2. Adds mapping, filtering, reduction etc. to any iterator object.

Basic example:

Stream
    .of([1, 2, 3, 4, 5])
    .skip(1)
    .map(x => x * 2)
    .forEach(x => console.log(x))

This will print:

4
6
8
10

Creating a Stream from an Array

const s = Stream.of([1, 2, 3, 4, 5])

Note: You can not store undefined in the array. An undefined value will end the stream.

Creating a Stream from an Iterator

Many JavaScript API support the iterator protocol. You can create a stream from them.

The following sums up the values in a Map that are larger than 150.

let m = new Map

m.set("a", 100)
m.set("b", 200)
m.set("c", 300)

let s = Stream.of(m.values())
    .filter(x => x > 150)
    .reduce((sum, x) => sum + x)

console.log(s)

That will print:

500

Iterate Through a Stream

Use the forEach() method of a stream to receive all the values.

const s = Stream.of([1, 2, 3, 4, 5])

s.forEach(x => console.log(x))

This will print:

1
2
3
4
5

Mapping Values

const s = Stream.of(["hello", "wonderful", "world"])

s.map(x => x.toUpperCase())
    .forEach(x => console.log(x))

This will print:

HELLO
WONDERFUL
WORLD

Flat Mapping

This is similar to map but the mapper function must return another stream. A certain class of problems can only be solved using flat mapping.

The following example starts with a stream of sentences. The flat mapper breaks each sentence into a stream of words. The forEach() prints out one word at a time.

Stream.of(["I have", "a dream"])
    .flatMap(s => Stream.of(s.split(" ")))
    .forEach(word => console.log(word))

This will print:

I
have
a
dream

Filtering Values

The following example adds 1 to each number and then filters out the odd numbers.

Stream.of([1, 2, 3, 4, 5])
    .map(x => x + 1)
    .filter(x => x % 2 == 0)
    .forEach(x => console.log(x))

This will print:

2
4
6

Inspecting the Stream

For debugging and logging you can inspect the flow of values through the stream using peek().

const s = Stream.of(["hello", "wonderful", "world"])
s
    .peek(x => console.log("Original:", x))
    .map(x => x.toUpperCase())
    .peek(x => console.log("Converted:", x))
    .forEach(x => console.log(x))

This will print:

Original: hello
Converted: HELLO
HELLO
Original: wonderful
Converted: WONDERFUL
WONDERFUL
Original: world
Converted: WORLD
WORLD

Skipping Values

Use skip() to suppress first few values from reaching downstream.

const s = Stream.of([1, 2, 3, 4, 5])
s.skip(2)
    .map(x => x * 2)
    .forEach(x => console.log(x))

This will print:

6
8
10

Limiting the Stream

Using limit() you can control the maximum number of values delivered downstream.

const s = Stream.of([1, 2, 3, 4, 5])
    .skip(1)
    .limit(3)
    .forEach(x => console.log(x))

This will print:

2
3
4

Skip While

The skipWhile() method will keep suppressing values from reaching downstream until a condition is met.

The following will keep skipping values until a negative value is found.

Stream.of([1, 2, -3, 4, 5])
    .skipWhile(x => x >= 0)
    .forEach(x => console.log(x))

This will print:

-3
4
5

Take While

The takeWhile() method makes it possible to terminate a stream early. The following will keep processing the stream until a negative number is reached.

Stream.of([1, 2, 3, -4, 5])
    .takeWhile(x => x >= 0)
    .forEach(x => console.log(x))

This will print:

1
2
3

Searching

To find out if any item in the stream matches a criteria use anyMatch(). Note, when the first match is encountered then the stream is ended and the remaining values in the stream are not inspected.

console.log("Contains 3:", Stream.of([1, 2, 3, 4, 5]).anyMatch(x => x == 3))
console.log("Contains 40:", Stream.of([1, 2, 3, 4, 5]).anyMatch(x => x == 40))

Prints:

Contains 3: true
Contains 40: false

The opposite is noneMatch(). However, this one needs to inspect all values in the stream.

console.log("Excludes 3:", Stream.of([1, 2, 3, 4, 5]).noneMatch(x => x == 3))
console.log("Excludes 40:", Stream.of([1, 2, 3, 4, 5]).noneMatch(x => x == 40))

Prints:

Excludes 3: false
Excludes 40: true

To search for a value in the stream use findFirst(). It will return undefined if no value matching the criteria is found.

console.log("Large:", Stream.of([1, 2, 33, 40, 5]).findFirst(x => x > 10))
console.log("Small:", Stream.of([1, 2, 33, 4, 5]).findFirst(x => x < 0))

Prints:

Large: 33
Small: undefined

Get an Array from a Stream

Use collect() to convert a stream into an array.

const s = Stream.of([1, 2, 3, 4, 5])
const a = s.skip(1)
    .limit(3)
    .collect()

console.log(a)

This will print:

[ 2, 3, 4 ]

Reducing a Stream

The reduce() method works the same way as JavaScript array reduce. The following code adds 1 to each value and then finds the maximum.

let max = Stream.of([1, 2, 33, 4, 5])
    .map(x => x + 1)
    .reduce((lastMax, x) => lastMax > x ? lastMax : x)
    
console.log(max)

This will print:

34

Optionally, you can supply an initial reduced value. The following will de-duplicate an array of names.

let s = Stream.of(["Earth", "Mars", "Jupiter", "Mars"])
    .reduce((theSet, x) => {
        theSet.add(x)

        return theSet
    }, new Set)

console.log(s)

This will print:

{ 'Earth', 'Mars', 'Jupiter' }

Zipping Streams

To combine multiple streams use the zip() method.

The following example skips one value from each stream and then prints the rest.

let s1 = Stream.of([1, 2, 3, 4, 5])
let s2 = Stream.of(["One", "Two", "Three"])

Stream.zip([s1, s2])
    .skip(1)
    .forEach(values => console.log(values))

This will print the following. Notice how the numbers 4 and 5 are ignored due to the dissimilar lengths of the streams.

[ 2, 'Two' ]
[ 3, 'Three' ]

Counting Items in a Stream

The following will count the number of even values in the stream.

const c = Stream
    .of([1, 2, 3, 4, 5])
    .filter(x => x % 2 == 0)
    .count()

console.log(c)

This will print:

2