@geut/openapi-box
v5.0.8
Published
Generate TypeBox types from OpenApi IDL + End-to-end typesafe HTTP client library.
Readme

openapi-box
Generate TypeBox types from OpenApi V3 IDL + End-to-end typesafe HTTP client library.
It works for TypeScript and JavaScript.
Install
$ npm install @geut/openapi-box @sinclair/typeboxUsage
- Generate the schema from an OpenApi url (it can a be filepath too):
$ openapi-box https://petstore3.swagger.io/api/v3/openapi.json- Load your schemas into the End-to-end typesafe
fetchclient:
import { schema } from './schema.js'
import { createClient } from './src/client.js'
const client = createClient({
schema,
baseUrl: 'https://petstore.swagger.io/v2'
})- Enjoy your types + validations out of the "box" :wink::
Issues
:bug: If you found an issue we encourage you to report it on github. Please specify your OS and the actions to reproduce it.
Contributing
:busts_in_silhouette: Ideas and contributions to the project are welcome. You must follow this guideline.
License
MIT © A GEUT project
