
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
fp-ts-extras
Advanced tools
fp-ts extra functions and utilities
import { groupBy } from "fp-ts-extras/lib/Array";
assert.deepStrictEqual(groupBy(eqNumber)([1, 1, 2, 3, 3, 4]), [
[1, 1],
[2],
[3, 3],
[4],
]);
Drop-in replacement of
t.partial
Instead of returning A | undefined, it returns Option<A>
import { partial } from "fp-ts-extras/lib/Option";
const B = partial({
bar: t.number,
});
import * as t from "io-ts";
const User = t.type({
userId: t.number,
name: t.string,
});
const PartialUser = t.partial(User.props);
type PartialUser = t.TypeOf<typeof PartialUser>;
// same as
type PartialUser = {
name: Option<string>;
age: Option<number>;
};
Problem: I have a task and if I call
task();
task();
it fires the internal promise twice. The expected behaviour is it should only fire once. The second call returns the same result as the first one.
Use case: I have 3 tasks: t1, t2, t3. tA is called once t1 and t2 is done. tB is called once t1 and t3 is done. tC is called once t2 and t3 is done. With raw promise I could do
Promise.all([
Promise.all([t1, t2]).then(_ => tA)
Promise.all([t2, t3]).then(_ => tC)
Promise.all([t1, t3]).then(_ => tB)
]).then(...)
But with Task
sequence([
pipe(sequence([t1, t2])), chain(_ => tA)),
pipe(sequence([t2, t3]), chain(_ => tC)),
pipe(sequence([t1, t3]), chain(_ => tB)),
])
...
side effects of t1, t2, t3 will be fired twice each. memPipe will come in handy
import { memPipe } from "fp-ts-extras/lib/Function";
const t1 = memPipe(...)
const t2 = memPipe(...)
const t3 = memPipe(...)
sequence([
pipe(sequence([t1, t2])), chain(_ => tA)),
pipe(sequence([t2, t3]), chain(_ => tC)),
pipe(sequence([t1, t3]), chain(_ => tB)),
])
Each task only performs side effect once.
encode/decode automatically when you stringify/parse
Why? You can use your preferred algebraic data types in your business logic, and can be converted to traditional json automatically when you do http request or save stuff to db, and vice versa.
const T = t.type({
foo: optionFromNullable(t.string),
});
const result = stringify(T, {
foo: O.of("abc"),
});
// right '{"foo":"abc"}'
const result = parse(T, '{"foo":"abc"}');
/*
right {
foo: O.of("abc"),
}
*/
import { union } from "fp-ts-extras/lib/Record";
assert.deepStrictEqual(
union([
{
foo: "foo",
},
{
bar: "bar",
},
]),
{
foo: "foo",
bar: "bar",
}
);
import { split, join } from "fp-ts-extras/lib/String";
import { pipe } from "fp-ts/lib/Function";
import * as assert from "assert";
const result = pipe("a,b,c", split(","), join(":"));
assert.deepStrictEqual(result, "a:b:c");
Decode with error to reduce boilerplate
import { decode } from "fp-ts-extras/lib/TaskEither";
import * as t from "io-ts";
import { pipe } from "fp-ts/lib/Function";
pipe(
decode(t.string, null)
// compose with other `TaskEither`s
);
Various useful functions on tuples, overloaded on tuple size.
UUID generator that returns type
UUID
FAQs
fp-ts extra functions and utilities
We found that fp-ts-extras demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.