Strictly-typed pipes for values through functions, an alternative to using the proposed pipe operator ( |> ) for ES.
Version 3.0 is a complete TypeScript rewrite with maximum type safety - no any in the public API, full IDE autocomplete support, and correct type inference throughout the chain.
npm install ppipeimport ppipe, { _ } from 'ppipe';
const add = (x: number, y: number) => x + y;
const square = (x: number) => x * x;
const divide = (x: number, y: number) => x / y;
const double = (x: number) => x * 2;
// Basic piping
const result = ppipe(1)
.pipe(add, _, 1) // 2
.pipe(double) // 4
.pipe(square) // 16
.pipe(divide, _, 8) // 2
.pipe(add, _, 1) // 3
.value;
console.log(result); // 3Chain functions together, passing the result of each to the next:
ppipe('hello')
.pipe(s => s.toUpperCase())
.pipe(s => s + '!')
.value; // 'HELLO!'Use _ to control where the piped value is inserted:
const _ = ppipe._;
// Value inserted at placeholder position
ppipe(10)
.pipe(divide, _, 2) // divide(10, 2) = 5
.value;
// Without placeholder, value is appended at the end
ppipe(10)
.pipe(divide, 100) // divide(100, 10) = 10
.value;
// Multiple placeholders insert the same value multiple times
ppipe(5)
.pipe((a, b) => a + b, _, _) // 5 + 5 = 10
.value;Promises are automatically handled - the chain waits for resolution and passes the unwrapped value to the next function:
async function fetchUser(id: number) {
const response = await fetch(`/api/users/${id}`);
return response.json();
}
const userName = await ppipe(1)
.pipe(fetchUser)
.pipe(user => user.name)
.pipe(name => name.toUpperCase());
// Or use .then()/.catch()
ppipe(1)
.pipe(fetchUser)
.pipe(user => user.name)
.then(name => console.log(name))
.catch(err => console.error(err));Get the current value with .value (or .val):
// Sync value
const num = ppipe(5).pipe(x => x * 2).value; // 10
// Async value (returns Promise)
const asyncNum = await ppipe(Promise.resolve(5)).pipe(x => x * 2).value;Create reusable pipe extensions with full type inference:
const mathPipe = ppipe.extend({
double: (x: number) => x * 2,
square: (x: number) => x * x,
add: (x: number, y: number) => x + y,
});
const result = mathPipe(5)
.double() // 10 - return type inferred as number
.square() // 100
.add(5) // 105
.value;
// Extensions can be chained
const extendedPipe = mathPipe.extend({
stringify: (x: number) => String(x),
});
const str = extendedPipe(5)
.double()
.stringify() // '10' - return type inferred as string
.value;Creates a new pipe with the given initial value.
const pipe = ppipe(initialValue);Pipes the current value through a function. The value is inserted at the placeholder position, or appended at the end if no placeholder is used.
pipe.pipe(fn) // fn(value)
pipe.pipe(fn, _, arg2) // fn(value, arg2)
pipe.pipe(fn, arg1) // fn(arg1, value)
pipe.pipe(fn, arg1, _) // fn(arg1, value)Gets the current value from the chain. Returns a Promise if any function in the chain was async.
Standard Promise then interface. Always available for consistent async handling.
Standard Promise catch interface. Always available for consistent async handling.
The placeholder symbol for argument positioning.
Creates a new ppipe factory with additional methods:
const extended = ppipe.extend({
methodName: (value, ...args) => result,
});Extension functions receive the piped value as their first argument.
Version 3.0 is a TypeScript rewrite that prioritizes type safety. Some dynamic features that couldn't be strictly typed have been removed:
| Feature | v2.x | v3.x Alternative |
|---|---|---|
| Deep property access | _.a.b.c |
.pipe(x => x.a.b.c) |
| Array spreading | ..._ |
.pipe(arr => fn(...arr)) |
| Direct method access | .map(fn) |
.pipe(arr => arr.map(fn)) |
| Context binding | .with(ctx) |
.pipe(fn.bind(ctx)) |
| Callable syntax | ppipe(val)(fn) |
ppipe(val).pipe(fn) |
These features relied on Proxy magic that returned any types, breaking TypeScript's ability to infer types correctly. The v3.x API ensures:
- Full IDE autocomplete support
- Correct type inference throughout the chain
- No
anytypes in the public API - Compile-time error detection
ppipe v3.x provides complete type inference:
// Types are inferred correctly through the chain
const result = ppipe(5)
.pipe(x => x * 2) // Pipe<number>
.pipe(x => x.toString()) // Pipe<string>
.pipe(x => x.length) // Pipe<number>
.value; // number
// Async types are tracked
const asyncResult = ppipe(Promise.resolve(5))
.pipe(x => x * 2) // Pipe<number, async=true>
.value; // Promise<number>
// Extension return types are inferred
const myPipe = ppipe.extend({
toArray: <T>(x: T) => [x],
});
myPipe(5).toArray().value; // number[]100% test coverage is maintained. To run tests:
npm install
npm testSee CONTRIBUTING.
- Complete TypeScript rewrite with strict typing
- Full IDE autocomplete and type inference support
- Removed features that couldn't be strictly typed (see Migration section)
- 100% test coverage on source files
- Strict ESLint rules disable all TypeScript escape hatches:
- No
anytypes - No type assertions (
as) - No ts-ignore/ts-expect-error comments
- No non-null assertions (
!)
- No
- Discriminated union state management for type-safe async/sync/error handling
- Updated all dependencies to latest versions
See v2.x README for previous features.
ISC
