Home

Awesome

<p align='right'>A <a href="http://www.swisspush.org">swisspush</a> project <a href="http://www.swisspush.org" border=0><img align="top" src='https://1.gravatar.com/avatar/cf7292487846085732baf808def5685a?s=32'></a></p> # Typson

Write your type definitions in TypeScript and Typson will generate json-schemas.

See it in action with its buddy docson

Build Status

Features

Usage

Node.js

Browser

<script src="vendor/require.js"/>
<script>
    require(["lib/typson-schema"], function(typson) {
            typson.schema("example/invoice/line.ts", "Invoice").done(function(schema) {
                console.log(schema);
            });
        });
</script>

Swagger

Static

Generated definitions are compatible with Swagger, you can copy Typson's output to your API files.

Dynamic

You can make Swagger UI read type definitions directly by integrating Typson, you will need a modified version of swagger.js. This version just adds the capability to load the models from another source.

See how it looks like in the Swagger Typson example (Note: this example also illustrate Docson integration in Swagger).

Then, adapt Swagger UI's index.html to

  1. Include Typson integration after the main inline script:
  <script src="/typson/vendor/require.js"></script>
  <script>
      requirejs.config({
          baseUrl: "/typson"
      });
      requirejs(["lib/typson-swagger"]);
  </script>
  1. Initialize Swagger UI only once Typson is ready:
  var typsonReady = $.Deferred();
  typsonReady.done(function () {

instead of jQuery's $(function() { initializer.

Then, just replace the models section of your API file with a tsModels property containing the URL pointing to the type script defining the models.

Similar Projects

Bitdeli Badge