从任意 JSON 生成 TypeScript Interface / Type 定义。
{ "name": "WeTools", "version": "0.1.0", "tools": [ { "id": "base64", "tags": ["hot"] }, { "id": "json-format" } ], "config": { "private": true, "mirror": null } }
interface Root { name: string; version: string; tools: Tool[]; config: Config; } interface Config { private: boolean; mirror: null; } interface Tool { id: string; tags?: string[]; }
JSON → Protobuf
从任意 JSON 推导出 Protobuf 3 message 定义。
JSON → Go Struct
从任意 JSON 推导出 Go 结构体定义,支持 json tag。
JSON 格式化 / 校验
美化、压缩、转义 JSON,错误位置精确提示。
JSON ↔ CSV
对象数组与 CSV 互转,可选分隔符与首列字段顺序。