zodios

zodios

TypeScript API开发框架 支持自动完成和类型验证

Zodios是一个TypeScript API开发框架,集成了axios和zod库。该框架提供简洁的API声明方式,支持IDE自动完成和类型安全特性。Zodios具备参数和响应模式验证功能,并包含插件系统,支持fetch适配器和身份验证自动注入。框架为React和Solid提供了@tanstack/query封装,同时保留了axios和express的核心功能。Zodios旨在简化API开发流程,提升开发效率和代码质量。

ZodiosAPI客户端TypeScript自动完成ZodGithub开源项目
<h1 align="center">Zodios</h1> <p align="center"> <a href="https://github.com/ecyrbe/zodios"> <img align="center" src="https://raw.githubusercontent.com/ecyrbe/zodios/main/docs/logo.svg" width="128px" alt="Zodios logo"> </a> </p> <p align="center"> Zodios is a typescript api client and an optional api server with auto-completion features backed by <a href="https://axios-http.com" >axios</a> and <a href="https://github.com/colinhacks/zod">zod</a> and <a href="https://expressjs.com/">express</a> <br/> <a href="https://www.zodios.org/">Documentation</a> </p> <p align="center"> <a href="https://www.npmjs.com/package/@zodios/core"> <img src="https://img.shields.io/npm/v/@zodios/core.svg" alt="langue typescript"> </a> <a href="https://www.npmjs.com/package/@zodios/core"> <img alt="npm" src="https://img.shields.io/npm/dw/@zodios/core"> </a> <a href="https://github.com/ecyrbe/zodios/blob/main/LICENSE"> <img alt="GitHub" src="https://img.shields.io/github/license/ecyrbe/zodios"> </a> <img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/ecyrbe/zodios/ci.yml?branch=main"> </p> <p align="center"> <img alt="Bundle Size" src="https://img.shields.io/bundlephobia/minzip/@zodios/core?label=%40zodios%2Fcore"/> <img alt="Bundle Size" src="https://img.shields.io/bundlephobia/minzip/@zodios/fetch?label=%40zodios%2Ffetch"/> <img alt="Bundle Size" src="https://img.shields.io/bundlephobia/minzip/@zodios/axios?label=%40zodios%2Faxios"/> <img alt="Bundle Size" src="https://img.shields.io/bundlephobia/minzip/@zodios/react?label=%40zodios%2Freact"/> <img alt="Bundle Size" src="https://img.shields.io/bundlephobia/minzip/@zodios/express?label=%40zodios%2Fexpress"/> <img alt="Bundle Size" src="https://img.shields.io/bundlephobia/minzip/@zodios/openapi?label=%40zodios%2Fopenapi"/> <img alt="Bundle Size" src="https://img.shields.io/bundlephobia/minzip/@zodios/testing?label=%40zodios%2Ftesting"/> </p>

https://user-images.githubusercontent.com/633115/185851987-554f5686-cb78-4096-8ff5-c8d61b645608.mp4

What is it ?

It's an axios compatible API client and an optional expressJS compatible API server with the following features:

  • really simple centralized API declaration

  • typescript autocompletion in your favorite IDE for URL and parameters

  • typescript response types

  • parameters and responses schema thanks to zod

  • response schema validation

  • powerfull plugins like fetch adapter or auth automatic injection

  • all axios features available

  • @tanstack/query wrappers for react and solid (vue, svelte, etc, soon)

  • all expressJS features available (middlewares, etc.)

Table of contents:

Install

Client and api definitions :

> npm install @zodios/core

or

> yarn add @zodios/core

Server :

> npm install @zodios/core @zodios/express

or

> yarn add @zodios/core @zodios/express

How to use it on client side ?

For an almost complete example on how to use zodios and how to split your APIs declarations, take a look at dev.to example.

Declare your API with zodios

Here is an example of API declaration with Zodios.

import { Zodios } from "@zodios/core"; import { z } from "zod"; const apiClient = new Zodios( "https://jsonplaceholder.typicode.com", // API definition [ { method: "get", path: "/users/:id", // auto detect :id and ask for it in apiClient get params alias: "getUser", // optional alias to call this endpoint with it description: "Get a user", response: z.object({ id: z.number(), name: z.string(), }), }, ], );

Calling this API is now easy and has builtin autocomplete features :

// typed auto-complete path auto-complete params // ▼ ▼ ▼ const user = await apiClient.get("/users/:id", { params: { id: 7 } }); console.log(user);

It should output

{ id: 7, name: 'Kurtis Weissnat' }

You can also use aliases :

// typed alias auto-complete params // ▼ ▼ ▼ const user = await apiClient.getUser({ params: { id: 7 } }); console.log(user);

API definition format

type ZodiosEndpointDescriptions = Array<{ method: 'get'|'post'|'put'|'patch'|'delete'; path: string; // example: /posts/:postId/comments/:commentId alias?: string; // example: getPostComments immutable?: boolean; // flag a post request as immutable to allow it to be cached with react-query description?: string; requestFormat?: 'json'|'form-data'|'form-url'|'binary'|'text'; // default to json if not set parameters?: Array<{ name: string; description?: string; type: 'Path'|'Query'|'Body'|'Header'; schema: ZodSchema; // you can use zod `transform` to transform the value of the parameter before sending it to the server }>; response: ZodSchema; // you can use zod `transform` to transform the value of the response before returning it status?: number; // default to 200, you can use this to override the sucess status code of the response (only usefull for openapi and express) responseDescription?: string; // optional response description of the endpoint errors?: Array<{ status: number | 'default'; description?: string; schema: ZodSchema; // transformations are not supported on error schemas }>; }>;

Full documentation

Check out the full documentation or following shortcuts.

Ecosystem

Roadmap for v11

for Zod/Io-Ts` :

  • By using the TypeProvider pattern we can now make zodios validation agnostic.

  • Implement at least ZodTypeProvider and IoTsTypeProvider since they both support input and output type inferrence

  • openapi generation will only be compatible with zod though

  • Not a breaking change so no codemod needed

  • MonoRepo:

    • Zodios will become a really large project so maybe migrate to turbo repo + pnpm

    • not a breaking change

  • Transform:

    • By default, activate transforms on backend and disable on frontend (today it's the opposite), would make server transform code simpler since with this option we could make any transforms activated not just zod defaults.

    • Rationale being that transformation can be viewed as business code that should be kept on backend

    • breaking change => codemod to keep current defaults by setting them explicitly

  • Axios:

    • Move Axios client to it's own package @zodios/axios and keep @zodios/core with only common types and helpers

    • Move plugins to @zodios/axios-plugins

    • breaking change => easy to do a codemod for this

  • Fetch:

    • Create a new Fetch client with almost the same features as axios, but without axios dependency @zodios/fetch

    • Today we have fetch support with a plugin for axios instance (zodios maintains it's own axios network adapter for fetch). But since axios interceptors are not used by zodios plugins, we can make fetch implementation lighter than axios instance.

    • Create plugins package @zodios/fetch-plugins

    • Not sure it's doable without a lot of effort to keep it in sync/compatible with axios client

    • new feature, so no codemod needed

  • React/Solid:

    • make ZodiosHooks independant of Zodios client instance (axios, fetch)

    • not a breaking change, so no codemod needed

  • Client Request Config

    • uniform Query/Mutation with body sent on the config and not as a standalone object. This would allow to not do client.deleteUser(undefined, { params: { id: 1 } }) but simply client.deleteUser({ params: { id: 1 } })

    • breaking change, so a codemod would be needed, but might be difficult to implement

  • Mock/Tests:

    • if we implement an abstraction layer for client instance, relying on moxios to mock APIs response will likely not work for fetch implementation.

    • create a @zodios/testing package that work for both axios/fetch clients

    • new feature, so no breaking change (no codemod needed)

You have other ideas ? Let me know !

Dependencies

Zodios even when working in pure Javascript is better suited to be working with Typescript Language Server to handle autocompletion. So you should at least use the one provided by your IDE (vscode integrates a typescript language server) However, we will only support fixing bugs related to typings for versions of Typescript Language v4.5 Earlier versions should work, but do not have TS tail recusion optimisation that impact the size of the API you can declare.

Also note that Zodios do not embed any dependency. It's your Job to install the peer dependencies you need.

Internally Zodios uses these libraries on all platforms :

  • zod
  • axios

编辑推荐精选

扣子-AI办公

扣子-AI办公

职场AI,就用扣子

AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!

堆友

堆友

多风格AI绘画神器

堆友平台由阿里巴巴设计团队创建,作为一款AI驱动的设计工具,专为设计师提供一站式增长服务。功能覆盖海量3D素材、AI绘画、实时渲染以及专业抠图,显著提升设计品质和效率。平台不仅提供工具,还是一个促进创意交流和个人发展的空间,界面友好,适合所有级别的设计师和创意工作者。

图像生成热门AI工具AI图像AI反应堆AI工具箱AI绘画GOAI艺术字堆友相机
码上飞

码上飞

零代码AI应用开发平台

零代码AI应用开发平台,用户只需一句话简单描述需求,AI能自动生成小程序、APP或H5网页应用,无需编写代码。

Vora

Vora

免费创建高清无水印Sora视频

Vora是一个免费创建高清无水印Sora视频的AI工具

Refly.AI

Refly.AI

最适合小白的AI自动化工作流平台

无需编码,轻松生成可复用、可变现的AI自动化工作流

酷表ChatExcel

酷表ChatExcel

大模型驱动的Excel数据处理工具

基于大模型交互的表格处理系统,允许用户通过对话方式完成数据整理和可视化分析。系统采用机器学习算法解析用户指令,自动执行排序、公式计算和数据透视等操作,支持多种文件格式导入导出。数据处理响应速度保持在0.8秒以内,支持超过100万行数据的即时分析。

AI工具使用教程AI营销产品酷表ChatExcelAI智能客服
TRAE编程

TRAE编程

AI辅助编程,代码自动修复

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

热门AI工具生产力协作转型TraeAI IDE
AIWritePaper论文写作

AIWritePaper论文写作

AI论文写作指导平台

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

数据安全AI助手热门AI工具AI辅助写作AI论文工具论文写作智能生成大纲
博思AIPPT

博思AIPPT

AI一键生成PPT,就用博思AIPPT!

博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。

热门AI工具AI办公办公工具智能排版AI生成PPT博思AIPPT海量精品模板AI创作
潮际好麦

潮际好麦

AI赋能电商视觉革命,一站式智能商拍平台

潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。

下拉加载更多