swagger-to-flowtype
is a tool for generating type definitions of Flow from swagger file.
npm i -g swagger-to-flowtype
$swagger-to-flowtype <YOUR SWAGGER FILE>
This command generates a file named flowtype.js includes type definitions as default.
Specify an output path
You can also specify an output path with -d option
.
$swagger-to-flowtype <YOUR SWAGGER FILE> -d <OUTPUT FILE PATH>
Supporting Maybe type
If you pass a --check-required
option, swagger-to-flowtype
will check required field
on your swagger file, then output flow definitions with Maybe type.
"NewPet": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"tag": {
"type": "string"
}
}
}
will be
export type NewPet = {
name: string,
tag?: string
}
swagger file like following
...
definitions:
Order:
type: "object"
properties:
id:
type: "integer"
format: "int64"
petId:
type: "integer"
format: "int64"
quantity:
type: "integer"
format: "int32"
shipDate:
type: "string"
format: "date-time"
status:
type: "string"
description: "Order Status"
enum:
- "placed"
- "approved"
- "delivered"
complete:
type: "boolean"
default: false
xml:
name: "Order"
Category:
type: "object"
properties:
id:
type: "integer"
format: "int64"
name:
type: "string"
xml:
name: "Category"
...
Output will be like below
// @flow
export type Order = {
id: number,
petId: number,
quantity: number,
shipDate: string,
status: string,
complete: boolean
};
export type Category = { id: number, name: string };
Node 4+ is required
npm test