Home

Awesome

Json2Ts

Overview

Json2Ts is a code generation tool that transforms Json Data into Typescript types.

Targets Browsers and Node.js .

Install

npm install @hacxy/json2ts --save

Example

import json2ts from '@hacxy/json2ts';

json2ts(`{"id": 1, "name": "hacxy"}`, 'Root').then((code) => {
  console.log(code);
});
/**
  export interface Root {
    id: number;
    name: string;
  }
 */

function: json2ts()

json2ts(json, name): Promise<string>

Params

nametypesdefaultdescription
jsonstringundefinedjson data
namestring'Root'define type name
optionsJson2TsOptions{ indentation: 2 }Generate options

Json2TsOptions

interface Json2TsOptions {
  /**
   * indentation of the generated code, default is 2 spaces
   */
  indentation?: number;
}

Returns

Promise<string>

Related

License

MIT