Jane is an OpenAPI Specification client generator. It uses templates written in Handlebars to generate a client code base in various languages.
The initial release is focused on providing a strong support of C# .NET Standard 1.3 and TypeScript.
To generate the API client, you need to give it two things:
- The swagger json file of your API, defining all the available methods.
- A configuration json file, specifying some options for your client generation.
A configuration file looks like this:
{
"language": "typescript",
"framework": "angular",
"version": "1.5",
"mode": "singleFile",
"dependencies": {
},
"mediaTypesPriorities": {
"application/json": 1
},
"ambientTypes": [
],
"templateOptions": {
"clientName": "MyAPIClient"
"scheme": {
"override": "https"
},
"generateInterface": true
}
}
To generate your API client, just run swaggen with these options:
swaggen --outputPath ./outputpath --options ./swaggen-config.json --schema ./api-swagger.json
You can generate the client in 2 languages for the moment. Here are the docs:
Documentation is maintained in this repository wiki
Jane will have a CLI interface but is meant to be integrated in build pipeline such as gulp. A gulp plugin acting as a wrapper for Jane is already available. Please check the wiki for guidance.
One purpose of this generator is to allow you to write or customize templates if needed. Please check the wiki for more information.
Read the Jane's story