sequence-collection-api
v0.20.6
Published
Functional sequences for processing iterable data in JavaScript
Maintainers
Readme
Type-safe functional sequences for processing iterable data in TypeScript and JavaScript.

★★★ 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-apiHow 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';sequenceOfaccepts one or many values and returns a new sequence.asSequenceaccepts an iterable (e.g. an array, set or map) and returns a new sequence.emptySequencereturns a new empty sequence.rangereturns as number sequence consisting of all numbers betweenstartInclusiveandendExclusive.generateSequencereturns a sequence generated from the given generator function.extendSequenceallows 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 ofIterator<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
Mixin Pattern — All operations are separate mixin classes dynamically added to the
SequenceImplprototype, ensuring modular code organization and extensibility viaextendSequence()Iterator Pattern — Uses native JavaScript
Iteratorprotocol for lazy evaluation, uniform element access, and compatibility with native iterablesDecorator Pattern — Iterator wrappers (
MapIterator,FilterIterator,FlatMapIterator) decorate the source iterator, adding new behavior without modifying the original objectFluent Interface — Method chaining is enabled by intermediate operations returning a new
Sequence<T>
Architecture Benefits
- Lazy evaluation — Minimal data processing, operations execute only when necessary
- Modularity — Each operation in a separate file, easy to add new ones
- Type safety — Full TypeScript support with type inference
- Extensibility — Ability to add custom operations
- 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
