typeconv is an extremely fast silver bullet type conversion utility.
It converts between any of its supported types, bidirectionally.
typeconv lets you convert between type systems which have core-types
converters, such as JSON Schema, TypeScript, GraphQL, Open API and SureType. This package can be used as an API programatically or as an application (installed in node_modules/.bin
or by using e.g. npx
).
By taking advantage of the core-types
(npm) toolbox for generic type handling, typeconv can convert and maintain source code location information, comments, descriptions etc. when converting between the different type systems. It is using the following converter packages:
These type systems don't share the same set of types and constraints. For example, JSON Schema has value constraints (like "a string must be longer than 5 characters") and GraphQL doesn't have null
or key-value objects as a first-class type. Convertions will therefore produce the smallest common denominator of type information, but still be very useful. See core-types
for more information on its supported types, and why not implement a new conversion package yourself!
Convert files from TypeScript ("ts") to GraphQL ("gql"), put the generated files in the gql-schemas
directory in the same directory structure as the source files:
$ typeconv -f ts -t gql -o gql-schemas 'types/**/*.ts'
This generates gql-schemas/*.graphql
for each .ts
file in types/
(and sub-directories).
Note that when using glob patterns, put them in quotes to not have the shell try to expand the pattern - typeconv will do it a lot better!
When converting from SureType, typeconv will extract all exported validators.
Since v2:
```json { "definitions": { "User": { "type": "object", "title": "User type", "description": "This type holds the user information, such as name", "properties": { "name": { "type": "string", "title": "The real name" } }, "required": [ "name" ] }, "ChatLine": { "type": "object", "title": "A chat line", "properties": { "user": { "$ref": "#/definitions/User" }, "line": { "type": "string" } }, "required": [ "user", "line" ] } } } ```
```ts /*User type This type holds the user information, such as name*/ export interface User { /*The real name*/ name: string; } /*A chat line*/ export interface ChatLine { user: User; line: string; } ``` or if converted into TypeScript _declarations_ (for `.d.ts` files), `export interface` will be `export declare interface`.
```graphql """ # User type This type holds the user information, such as name """ type User { "The real name" name: String! } "A chat line" type ChatLine { user: User! line: String! } ```
Conversions are bi-directional, so any of these type systems can convert to any other.
You can depend on typeconv
, and if so, you'll have node_modules/.bin/typeconv
installed. Or you run it with on-the-fly installation using npx
, as npx typeconv args...
.
Use -f
(or --from-type
) to specify from which type system to convert, and -t
(or --to-type
) to specify which type system to convert to. Other options can be used to configure each configuration (both the from and the to) and these options are usually only available for a specific type system.
The types supported are gql
(GraphQL), ts
(TypeScript), jsc
(JSON Schema), oapi
(Open API) and st
(SureType).
$ typeconv --help
```
Usage: typeconv [options] file ...
Options:
-h, --help Print (this) help screen
--version Print the program version
-v, --verbose Verbose informational output (default: false)
--dry-run Prepare and perform conversion, but write no output (default: false)
--(no-)hidden Include hidden files, i.e. files in .gitignore,
files beginning with '.' and the '.git' directory
(default: true)
-f, --from-type
To convert from one type system to another, you create a reader for the type system to convert from and a writer for the type system to convert to. The readers and writers for the different type systems have their own set of options. Some have no options (like the JSON Schema reader), some require options (like the Open API writer).
Making a converter is done using makeConverter(reader, writer, options?)
, which takes a reader and a writer, and optionally options:
The current working directory, only useful when working with files.
When simplify is true, the converter will let core-types compress the types after having converted from {reader} format to core-types. This is usually recommended, but may cause some annotations (comments) to be dropped.
Custom map function for transforming each type after it has been converted from the source type (and after it has been simplified), but before it's written to the target type system.
Type: (node: NamedType, index: number, array: ReadonlyArray<NamedType>) => NamedType
(NamedType ref)
If filter
is used as well, this runs before filter
.
If transform
is used as well, this runs before transform
.
Custom filter function for filtering types after they have been converted from the source type.
Type: (node: NamedType, index: number, array: ReadonlyArray<NamedType>) => boolean
(NamedType ref)
If map
is used as well, this runs after map
.
If transform
is used as well, this runs before transform
.
Custom filter function for filtering types after they have been converted from the source type.
Type: ( doc: NodeDocument ) => NodeDocument
(NodeDocument ref)
If map
is used as well, this runs after map
.
If filter
is used as well, this runs after filter
.
Shortcut reader and writer if possible (bypassing core-types).
import {
getTypeScriptReader,
getOpenApiWriter,
makeConverter,
} from 'typeconv'
const reader = getTypeScriptReader( );
const writer = getOpenApiWriter( { format: 'yaml', title: 'My API', version: 'v1' } );
const { convert } = makeConverter( reader, writer );
const { data } = await convert( { data: "export type Foo = string | number;" } );
data; // This is the Open API yaml as a string
There are two exported functions for JSON Schema:
import { getJsonSchemaReader, getJsonSchemaWriter } from 'typeconv'
const reader = getJsonSchemaReader( );
const writer = getJsonSchemaWriter( );
They don't have any options.
typeconv expects the JSON Schema to contain definitions, i.e. to be in the form:
```json { "definitions": { "User": { "type": "object", "properties": { "name": { "type": "string" } }, "required": [ "name" ] }, "ChatLine": { "type": "object", "properties": { "user": { "$ref": "#/definitions/User" }, "line": { "type": "string" } }, "required": [ "user", "line" ] } } } ```
typeconv doesn't support external references (to other files). If you have that, you need to use a reference parser and merge it into one inline-referenced file before using typeconv.
Converting to or from Open API can be done with both JSON and YAML. The default is JSON.
When reading, if the filename ends with .yml
or .yaml
, typeconv will interpret the input as YAML.
Writing however, is decided in the writer factory and provided to getOpenApiWriter
.
import { getOpenApiReader, getOpenApiWriter } from 'typeconv'
const reader = getOpenApiReader( );
const writer = getOpenApiWriter( {
format: 'yaml',
title: 'My API',
version: 'v1',
schemaVersion: '3.0.0',
} );
The options to getOpenApiWriter
is:
interface {
format?: string;
title: string;
version: string;
schemaVersion?: string;
}
TypeScript conversion is done using:
import { getTypeScriptReader, getTypeScriptWriter } from 'typeconv'
const reader = getTypeScriptReader( );
const writer = getTypeScriptWriter( );
Both these take an optional argument.
The getTypeScriptReader
takes an optional
FromTsOptions
object from core-types-ts
, although warn
isn't necessary since it's set by typeconv internally.
The getTypeScriptWriter
takes an optional
ToTsOptions
object from core-types-ts
, although warn
, filename
, sourceFilename
, userPackage
and userPackageUrl
aren't necessary since they're set by typeconv internally.
GraphQL conversion is done using;
import { getGraphQLReader, getGraphQLWriter } from 'typeconv'
const reader = getGraphQLReader( );
const writer = getGraphQLWriter( );
Both these take an optional argument.
The getGraphQLReader
takes an optional
GraphqlToCoreTypesOptions
object from core-types-graphql
, although warn
isn't necessary since it's set by typeconv internally.
The getGraphQLWriter
takes an optional
CoreTypesToGraphqlOptions
object from core-types-graphql
, although warn
, filename
, sourceFilename
, userPackage
and userPackageUrl
aren't necessary since they're set by typeconv internally.
SureType conversion is done using;
import { getSureTypeReader, getSureTypeWriter } from 'typeconv'
const reader = getSureTypeReader( );
const writer = getSureTypeWriter( );
Both these take an optional argument from the core-types-suretype
package.
The getSureTypeReader
takes an optional
SuretypeToJsonSchemaOptions
.
The getSureTypeWriter
takes an optional
JsonSchemaToSuretypeOptions
.