An ergonomic and performant JavaScript iteration library for functional style programming without the overhead.
⚠️ Warning: This library is in early development. While it significantly reduces memory usage, the runtime for filter operations is still underoptimized. API may change in future versions.
- Performance: Optimized for both speed and memory efficiency
- Lazy Evaluation: Operations are only executed when needed
- Chainable API: Intuitive functional programming style
- Type-Safe: Written in TypeScript with full type definitions
- Lightweight: Zero dependencies, minimal footprint
npx jsr add @nod/iter-js
# or
yarn dlx jsr add @nod/iter-js
# or
pnpm dlx jsr add @nod/iter-js
# or
bunx jsr add @nod/iter-js
import iter from "@nod/iter-js";
// Basic example
const result = iter([1, 2, 3, 4, 5])
.map((x) => x * 2)
.filter((x) => x > 5)
.collect();
console.log(result); // [6, 8, 10]
// Working with objects
const users = [
{ id: 1, name: "Alice", age: 28 },
{ id: 2, name: "Bob", age: 32 },
{ id: 3, name: "Charlie", age: 22 },
];
const adultNames = iter(users)
.filter((user) => user.age >= 25)
.map((user) => user.name)
.collect();
console.log(adultNames); // ["Alice", "Bob"]
Creates an iterator wrapper with chainable methods.
- data: The array or iterable to iterate over
Maps each element using the provided function.
iter([1, 2, 3])
.map((x) => x * 2)
.collect(); // [2, 4, 6]
Filters elements based on the provided predicate function.
iter([1, 2, 3, 4])
.filter((x) => x % 2 === 0)
.collect(); // [2, 4]
Takes the first n elements.
iter([1, 2, 3, 4, 5]).first(3).collect(); // [1, 2, 3]
Takes the last n elements.
iter([1, 2, 3, 4, 5]).last(2).collect(); // [4, 5]
Reverses the order of elements.
iter([1, 2, 3]).reverse().collect(); // [3, 2, 1]
Collects the results into an array, executing all operations in the chain.
iter([1, 2, 3])
.map((x) => x * 2)
.collect(); // [2, 4, 6]
Finds the first element that satisfies the predicate.
iter([1, 2, 3, 4]).find((x) => x > 2); // 3
Gets the first element in the iterator.
iter([1, 2, 3]).findFirst(); // 1
Executes a function for each element in the iterator.
let sum = 0;
iter([1, 2, 3]).forEach((x) => {
sum += x;
});
console.log(sum); // 6
Reduces the iterator to a single value.
iter([1, 2, 3]).reduce((acc, val) => acc + val, 0); // 6
Counts the number of elements in the iterator.
iter([1, 2, 3, 4])
.filter((x) => x % 2 === 0)
.count(); // 2
iter-js
is designed to be more efficient than native array methods, especially for complex operation chains.
benchmark time/iter (avg) iter/s (min … max) p75 p99 p995
----------------------------------- ----------------------------- --------------------- --------------------------
Native array methods 6.9 ms 144.1 ( 6.7 ms … 10.7 ms) 7.0 ms 10.7 ms 10.7 ms
Iter implementation 6.2 ms 162.3 ( 6.0 ms … 7.0 ms) 6.2 ms 7.0 ms 7.0 ms
Native array methods - long chain 9.8 ms 101.7 ( 9.5 ms … 10.9 ms) 10.0 ms 10.9 ms 10.9 ms
Iter implementation - long chain 8.5 ms 118.2 ( 8.3 ms … 9.3 ms) 8.5 ms 9.3 ms 9.3 ms
Native array methods - objects 1.2 ms 812.8 ( 1.1 ms … 3.4 ms) 1.2 ms 1.7 ms 1.9 ms
Iter implementation - objects 1.2 ms 813.8 ( 1.2 ms … 1.9 ms) 1.2 ms 1.8 ms 1.8 ms
=== MEMORY USAGE COMPARISON ===
Native implementation:
Heap before: 14.97 MB total, 13.23 MB used
Heap after: 51.44 MB total, 33.67 MB used
Difference: 20.44 MB used
Iter implementation:
Heap before: 51.44 MB total, 33.69 MB used
Heap after: 57.92 MB total, 40.00 MB used
Difference: 6.32 MB used
Memory savings: 14.12 MB
- Memory Efficiency: Significantly lower memory usage compared to native array methods
- Performance: Faster execution, especially for longer operation chains
- Cleaner Code: Functional programming style with a fluent API
- Type Safety: Full TypeScript support with proper type inference
# Install dependencies
pnpm install
# Run tests
pnpm test
# Run benchmarks (requires Deno)
deno run -A bench/bench.ts
deno run -A bench/memory.ts
# Build the library
pnpm build:all
MIT