fast-typescript-to-jsonschema
生成typescript类型的jsonschema数据
特性
- 编译Typescript文件以获取完整的类型信息
- 将所需的属性、继承、注释、属性初始值转换为jsonschema
使用
1.安装依赖
yarn add fast-typescript-to-jsonschema -D
2.创建type.ts
文件,内容如下:
interface ITest {
attr1: string;
attr2: number;
attr3?: boolean;
}
- 创建
test.js
文件,内容如下:
3.1 通过文件生成 jsonschema
const { default: genTypeSchema } = require('fast-typescript-to-jsonschema');
const path = require('path');
// 目标文件
const file = path.resolve(__dirname, './type.ts');
// 生成数据
genTypeSchema.genJsonDataFormFile(file);
// 获得当前文件对应的所有jsonschema数据
const json = genTypeSchema.genJsonData();
// 获得具体的某个type的jsonschema数据
const jsonSchema = genTypeSchema.getJsonSchema(file, 'ITest');
// 返回结果
console.log(jsonSchema);
3.2 通过 code 生成 jsonschema
const { default: genTypeSchema } = require('fast-typescript-to-jsonschema');
const code = `
interface ITest {
attr1: string;
attr2: number;
attr3?: boolean;
}
`
// generate data
genTypeSchema.genJsonDataFromCode(code);
// get all jsonschema data of current file
const json = genTypeSchema.genJsonData();
// get jsonschema of specific type
const jsonSchema = genTypeSchema.getJsonSchema('ITest');
// result
console.log(jsonSchema);
4.执行脚本
node ./test.js
jsonSchema
返回结果如下:
{
"additionalProperties": false,
"properties": {
"attr1": {
"type": "string",
},
"attr2": {
"type": "number",
},
"attr3": {
"type": "boolean",
},
},
"required": [
"attr1",
"attr2",
],
"type": "object",
}
- example 案例地址: https://github.com/yunke-yunfly/fast-typescript-to-jsonschema/tree/master/example (opens in a new tab)
注释
示例1
interface Interface_1 {
attr: string;
}
结果:
{
"additionalProperties": false,
"properties": {
"attr": {
"type": "string",
},
},
"required": [
"attr",
],
"type": "object",
}
示例2
interface Interface_4 {
attr: string[];
}
结果:
{
"additionalProperties": false,
"properties": {
"attr": {
"items": {
"type": "string",
},
"type": "array",
},
},
"required": [
"attr",
],
"type": "object",
}
更多支持的类型解析请看 (opens in a new tab),目录如下:
- 接口 (opens in a new tab)
- 模块 (opens in a new tab)
- 继承 (opens in a new tab)
- 枚举 (opens in a new tab)
- 泛型 (opens in a new tab)
- 命名空间 (opens in a new tab)
- type类型 (opens in a new tab)
- 工具函数 (opens in a new tab)
- 注释 (opens in a new tab)
贡献
我们非常欢迎您的贡献,您可以通过以下方式与我们共建。
- 提交GitHub 问题 (opens in a new tab)以报告错误或提出问题。
- 提出拉取请求 (opens in a new tab)以改进我们的代码。
- 贡献指南。