Announcing ArkType 2.1
Optimized pattern matching from type syntax
As of today, 2.1.0 is generally available 🎉
The biggest feature is match
, a pattern matching API that allows you to define cases using expressive type syntax. The result is a highly optimized matcher that uses set theory to automatically skip unmatched branches.
We could not be more excited to share this not just as the first syntactic matcher in JS, but as the first ArkType feature to showcase the potential of runtime types to do more than just validation.
Languages with introspectable types offer incredibly powerful features that have always felt out of reach in JS- until now.
We're actually huge fans of Gabriel Vergnaud and ts-pattern, which has a great API and totally reasonable performance. We've referenced it for comparison to showcase the unique expressiveness and optimization runtime types unlock.
Below are the full notes for the 2.1.0 release. We can't wait to hear what you think! 🚀
match
The match
function provides a powerful way to handle different types of input and return corresponding outputs based on the input type, like a type-safe switch
statement.
Case Record API
The simplest way to define a matcher is with ArkType definition strings as keys with corresponding handlers as values:
In this example, sizeOf
is a matcher that takes a string, array, number, or bigint as input. It returns the length of strings and arrays, and the value of numbers and bigints.
default
accepts one of 4 values:
"assert"
: acceptunknown
, throw if none of the cases match"never"
: accept an input based on inferred cases, throw if none match"reject"
: acceptunknown
, returnArkErrors
if none of the cases match(data: In) => unknown
: handle data not matching other cases directly
Cases will be checked in the order they are specified, either as object literal keys or via chained methods.
Fluent API
The match
function also provides a fluent API. This can be convenient for non-string-embeddable definitions:
Narrowing input with in
, property matching with at
Special thanks to @thetayloredman who did a mind-blowingly good job helping us iterate toward the current type-level pattern-matching implementation🙇
Builtin keywords can now be globally configured
This can be very helpful for customizing error messages without needing to create your own aliases or wrappers.
The options you can provide here are identical to those used to configure a Type directly, and can also be extended at a type-level to include custom metadata.
Tuple and args expressions for .to
If a morph returns an ArkErrors
instance, validation will fail with that result instead of it being treated as a value. This is especially useful for using other Types as morphs to validate output or chain transformations.
To make this easier, there's a special to
operator that can pipe to a parsed definition without having to wrap it in type
to make it a function.
This was added before 2.0, but now it comes with a corresponding operator (|>
) so that it can be expressed via a tuple or args like most other expressions:
Error configurations now accept a string directly
Keep in mind, as mentioned in the docs, error configs like message
can clobber more granular config options like expected
and actual
and cannot be included in composite errors e.g. for a union.
Though generally, returning a string based on context is the best option, in situations where you always want the same static message, it's now easier to get that!
Type.toString() now wraps its syntactic representation in Type<..>
Previously, Type.toString()
just returned Type.expression
. However, in contexts where the source of a message isn't always a Type
, it could be confusing:
Hopefully if you interpolate a Type, you'll be less confused by the result from now on!
Improve how Type instances are inferred when wrapped in external generics
Previously, we used NoInfer
in some Type method returns. After migrating those to inlined conditionals, we get the same benefit and external inference for cases like this is more reliable: