Some schema libraries support two way conversion of data, often referred to as "encoding" and "decoding".
We benchmark the time taken to encode and decode a bigint to and from a string.
Copy to clipboardimport * as z from "zod"; const bigIntFromString = z.codec(z.string(), z.bigint(), { decode: (str) => BigInt(str), encode: (bigint) => bigint.toString(), }); bigIntFromString.encode(1234567890123456789n); // "1234567890123456789" bigIntFromString.decode("1234567890123456789"); // 1234567890123456789n
Invalid data
We don't benchmark codecs with invalid data, as many libraries require the input to be correctly typed before passing it to the codec.
Optimizations
| Library | Version | Downloads (/wk) | Optimizations | Encode | Decode | |||||
|---|---|---|---|---|---|---|---|---|---|---|
sury | 11.0.0-alpha.11 | 291.77K | JIT | Code snippet(Commented code is not benchmarked) | 84 ns | Code snippet(Commented code is not benchmarked) | 123 ns | |||
io-ts | 2.2.22 | 2.71M | None | Code snippet(Commented code is not benchmarked) | 88 ns | Code snippet(Commented code is not benchmarked) | 137 ns | |||
zod/mini | 4.4.3 | 240.5M | JIT | Code snippet | 163 ns | Code snippet | 208 ns | |||
zod | 4.4.3 | 240.5M | JIT | Code snippet | 169 ns | Code snippet | 208 ns | |||
effect (unknown) | Accepts unknown valuesThis codec allows unknown input, requiring extra validation. | 3.22.0 | 26.02M | None | Code snippet | 336 ns | Code snippet | 408 ns | ||
effect | 3.22.0 | 26.02M | None | Code snippet | 350 ns | Code snippet | 408 ns | |||
effect@beta (unknown) | Accepts unknown valuesThis codec allows unknown input, requiring extra validation. | 4.0.0-beta.101 | 26.02M | None | Code snippet | 2 μs | Code snippet | 2 μs | ||
effect@beta | 4.0.0-beta.101 | 26.02M | None | Code snippet | 2 μs | Code snippet | 2 μs | |||
typebox | Accepts unknown valuesThis codec allows unknown input, requiring extra validation. | 1.3.8 | 5.5M | JIT | Code snippet(Commented code is not benchmarked) | 5 μs | Code snippet(Commented code is not benchmarked) | 5 μs | ||