Revision 0.8.0
This commit is contained in:
141
readme.md
Normal file
141
readme.md
Normal file
@@ -0,0 +1,141 @@
|
||||
<div align='center'>
|
||||
|
||||
<h1>TypeBox Remix</h1>
|
||||
|
||||
<p>Integrate Valibot and Zod with TypeBox</p>
|
||||
|
||||
<img src="typebox-remix.png" />
|
||||
|
||||
<br />
|
||||
<br />
|
||||
|
||||
[](https://badge.fury.io/js/%40sinclair%2Ftypebox-remix)
|
||||
[](https://www.npmjs.com/package/%40sinclair%2Ftypebox-remix)
|
||||
[](https://github.com/sinclairzx81/typebox-remix/actions/workflows/build.yml)
|
||||
[](https://opensource.org/licenses/MIT)
|
||||
|
||||
</div>
|
||||
|
||||
## Install
|
||||
|
||||
```bash
|
||||
$ npm install @sinclair/typebox-remix --save
|
||||
```
|
||||
|
||||
## Example
|
||||
|
||||
TypeBox Remix converts Valibot and Zod Types into TypeBox compatible schematics
|
||||
|
||||
```typescript
|
||||
import { Box } from '@sinclair/typebox-remix'
|
||||
|
||||
import * as v from 'valibot'
|
||||
import * as z from 'zod'
|
||||
|
||||
// Valibot to TypeBox (Runtime)
|
||||
|
||||
const V = Box(v.object({ // const V = {
|
||||
x: v.number(), // type: 'object',
|
||||
y: v.number(), // required: ['x', 'y', 'z'],
|
||||
z: v.number() // properties: {
|
||||
})) // x: { type: 'number' },
|
||||
// y: { type: 'number' },
|
||||
// z: { type: 'number' }
|
||||
// }
|
||||
// }
|
||||
|
||||
// Zod to TypeBox (Static)
|
||||
|
||||
const Z = Box(z.object({ // const Z: TObject<{
|
||||
a: z.string(), // a: TString,
|
||||
b: z.string(), // b: TString,
|
||||
c: z.string() // c: TString
|
||||
})) // }>
|
||||
```
|
||||
|
||||
## Overview
|
||||
|
||||
TypeBox Remix is a library that makes Zod and Valibot compatible with TypeBox. It works by structurally remapping the types provided by these libraries into Json Schema schematics, enabling them to integrate with the TypeBox infrastructure and making them compatible with Ajv.
|
||||
|
||||
This library can be used to integrate Valibot and Zod into server infrastructures that standardize on the Json Schema specification. By transforming these libraries to Json Schema, they can benefit from accelerated type checking and achieve better interoperability with non-JavaScript based systems.
|
||||
|
||||
License MIT
|
||||
|
||||
## Contents
|
||||
|
||||
- [Install](#Install)
|
||||
- [Overview](#Overview)
|
||||
- [Usage](#Usage)
|
||||
- [Valibot](#Valibot)
|
||||
- [Zod](#Zod)
|
||||
- [Benchmark](#Benchmark)
|
||||
- [Contribute](#Contribute)
|
||||
|
||||
## Usage
|
||||
|
||||
TypeBox Remix provides a singular Box function to transform Valibot and Zod types into TypeBox schematics. The top-level export is capable of transforming both Valibot and Zod, but you should use the appropriate submodule depending on which library you are using.
|
||||
|
||||
### Valibot
|
||||
|
||||
Use the `/valibot` submodule if you only have Valibot installed.
|
||||
|
||||
```typescript
|
||||
import { Box } from '@sinclair/typebox-remix/valibot' // Transform Valibot Only
|
||||
|
||||
import * as v from 'valibot'
|
||||
|
||||
const T = Box(v.string()) // const T = { type: 'string' }
|
||||
```
|
||||
|
||||
Refer to the Valibot [documentation](https://valibot.dev/) for more information on this type library.
|
||||
|
||||
### Zod
|
||||
|
||||
Use the `/zod` submodule if you only have Zod installed.
|
||||
|
||||
```typescript
|
||||
import { Box } from '@sinclair/typebox-remix/zod' // Transform Zod Only
|
||||
|
||||
import * as z from 'zod'
|
||||
|
||||
const T = Box(z.string()) // const T = { type: 'string' }
|
||||
```
|
||||
|
||||
Refer to the Zod [documentation](https://zod.dev/) for more information on this type library.
|
||||
|
||||
|
||||
|
||||
## Benchmark
|
||||
|
||||
This project manages a benchmark that runs type check performance using Zod, Valibot and TypeBox validators. The benchmark is setup to run 1 million check operations per library and validator pairing and reports the elapsed time taken to complete.
|
||||
|
||||
### Type
|
||||
|
||||
```typescript
|
||||
const T = { x: number, y: number, z: number }
|
||||
```
|
||||
|
||||
### Results
|
||||
```typescript
|
||||
┌─────────┬────────────────┬────────────────────┬────────────┬────────────┐
|
||||
│ (index) │ library │ using │ iterations │ elapsed │
|
||||
├─────────┼────────────────┼────────────────────┼────────────┼────────────┤
|
||||
│ 0 │ 'valibot ' │ 'valibot ' │ 1000000 │ '378 ms ' │
|
||||
│ 1 │ 'valibot ' │ 'typebox:value ' │ 1000000 │ '125 ms ' │
|
||||
│ 2 │ 'valibot ' │ 'typebox:compile ' │ 1000000 │ '4 ms ' │
|
||||
└─────────┴────────────────┴────────────────────┴────────────┴────────────┘
|
||||
┌─────────┬────────────────┬────────────────────┬────────────┬────────────┐
|
||||
│ (index) │ library │ using │ iterations │ elapsed │
|
||||
├─────────┼────────────────┼────────────────────┼────────────┼────────────┤
|
||||
│ 0 │ 'zod ' │ 'zod ' │ 1000000 │ '444 ms ' │
|
||||
│ 1 │ 'zod ' │ 'typebox:value ' │ 1000000 │ '127 ms ' │
|
||||
│ 2 │ 'zod ' │ 'typebox:compile ' │ 1000000 │ '5 ms ' │
|
||||
└─────────┴────────────────┴────────────────────┴────────────┴────────────┘
|
||||
```
|
||||
|
||||
For community benchmarks, refer to the [runtime-type-benchmarks](https://github.com/moltar/typescript-runtime-type-benchmarks) project.
|
||||
|
||||
## Contribute
|
||||
|
||||
This project is open to community contribution. Please ensure you submit an open issue before submitting your pull request. TypeBox and associated projects prefer open community discussion before accepting new features.
|
||||
|
||||
Reference in New Issue
Block a user