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 🙏

© 2025 – Pkg Stats / Ryan Hefner

sequence-collection-api

v0.20.6

Published

Functional sequences for processing iterable data in JavaScript

Readme

Sequencey Travic CI

Type-safe functional sequences for processing iterable data in TypeScript and JavaScript.

Sequencey


★★★ Like this project? Leave a star and follow on Twitter! Thanks. ★★★

About Sequency

Sequency is a lightweight (5 KB minified), intensely tested (200+ tests, 99% coverage), type-safe functional programming library for processing iterable data such as arrays, sets and maps. It's written in TypeScript, compiles to ES5-compatible JavaScript and works in all current browsers and Node applications. The API is inspired by Sequences from the programming language Kotlin.

Getting started

npm install --save sequence-collection-api

How Sequency works

Sequency is centered around a single class called Sequence to process any kind of iterable data such as arrays, sets or maps. The API is inspired by Kotlin Sequences.

Sequences can be created by utilizing one of the following functions:

import {
    asSequence,
    sequenceOf, 
    emptySequence, 
    range,
    generateSequence,
    extendSequence
} from 'sequence-collection-api';
  • sequenceOf accepts one or many values and returns a new sequence.
  • asSequence accepts an iterable (e.g. an array, set or map) and returns a new sequence.
  • emptySequence returns a new empty sequence.
  • range returns as number sequence consisting of all numbers between startInclusive and endExclusive.
  • generateSequence returns a sequence generated from the given generator function.
  • extendSequence allows extending sequences with user-defined operations (see example).

Each Sequence provides a fluent functional API consisting of intermediate and terminal operations. Intermediate functions (e.g. filter, map, sorted) return a new sequence, thus enabling method chaining. Terminal functions (e.g. toArray, groupBy, findLast) return an arbitrary result. Detailed descriptions of all operations are available in the API docs.

Sequences are lazily evaluated to avoid examining all of the input data when it's not necessary. Sequences always perform the minimal amount of operations to gain results. E.g. in a filter - map - find sequence both map and find are executed just one time before returning the single result.

Architecture

Core Components

Sequence<T> — The central interface of the library:

  • Contains a single iterator: Iterator<T> property for lazy iteration
  • Extends SequenceOperators<T>, which combines all operations
  • Sequences can be iterated only once (single-pass)

SequenceImpl<T> — The concrete implementation using the Mixin Pattern:

  • All operations are added dynamically via the applyMixins() function
  • Each operation is implemented as a separate mixin class
  • Enables modular code organization and easy addition of new operations

AsyncSequence<T> — Asynchronous version of the sequence:

  • Uses AsyncIterator<T> instead of Iterator<T>
  • All operations return Promise
  • Follows the same Mixin architecture as the synchronous version

Operation Types

Intermediate Operations — Return a new Sequence<T>, enabling method chaining:

  • Lazy evaluation — executed only when necessary
  • Examples: map, filter, flatMap, take, drop, sorted
  • Create a new iterator wrapper around the source iterator without processing all elements at once

Terminal Operations — Return a concrete value and trigger chain execution:

  • Eager evaluation — executed immediately
  • Examples: toArray, reduce, groupBy, count, first, last
  • Iterate the entire sequence (or until result is reached) and return the final result

Architectural Patterns

  1. Mixin Pattern — All operations are separate mixin classes dynamically added to the SequenceImpl prototype, ensuring modular code organization and extensibility via extendSequence()

  2. Iterator Pattern — Uses native JavaScript Iterator protocol for lazy evaluation, uniform element access, and compatibility with native iterables

  3. Decorator Pattern — Iterator wrappers (MapIterator, FilterIterator, FlatMapIterator) decorate the source iterator, adding new behavior without modifying the original object

  4. Fluent Interface — Method chaining is enabled by intermediate operations returning a new Sequence<T>

Architecture Benefits

  1. Lazy evaluation — Minimal data processing, operations execute only when necessary
  2. Modularity — Each operation in a separate file, easy to add new ones
  3. Type safety — Full TypeScript support with type inference
  4. Extensibility — Ability to add custom operations
  5. Performance — Optimized iterator usage, no intermediate arrays

API documentation

Full API documentation is available at Sequency API docs.

Sequency is also fully documented via inline JSDoc comments. When using an IDE like Intellij IDEA or Webstorm the docs are available inline right inside your editor.

Why Sequency?

I've built Sequency because I'm using Kotlin for server-side code but for some reasons still use TypeScript and JavaScript for client-side browser code. I find that using the same APIs for collection processing both on client and server is a huge gain in productivity for me.

License

MIT © winterbe