Giter Club home page Giter Club logo

ts-openapi's Introduction

Ts-openapi

npm

An openapi json generator using joi API schemas that will help you to maintain your API documentation up to date. Joi is the is one of the most used components to validate data schemas, this can be used to generate and maintain API information up to date, without the need to update manually documentation.

This software has some code extracted from joi-to-swagger to interface with Joi schemas.

Installation

Using npm: npm i --save ts-openapi

Visit the GitHub Repo tutorials, documentation, and support


OpenApi Supported Types

Type Query Path (1)(5) Header Cookie Body
String, String Enum, Email, Password, Uuid, Uri, Hostname, Ipv4, Ipv6 YES YES YES YES NO (4)
Integer, Integer Enum, Number, Number Enum YES YES YES YES NO (4)
Date-time, Date YES YES YES YES NO (4)
Byte(3), Binary (string) YES YES YES YES NO (4)
Array[] YES (3) NO NO NO YES (4)
Object NO NO NO NO YES (6)
(1) Values included in url parameters are always required because they're part of the url.
(2) this type is a Base64 binary encoded string.
(3) array of scalar values.
(4) for body we support objects and arrays.
(5) the name of route parameters must be made up of “word characters” ([A-Za-z0-9_]).
(6) GET requests don't have a body.

Type Samples

All samples presented here an in Typescript

String Types
Numeric Types
Date-Time Types
Binary Types
Array Type
Object Type

Advanced Topics

Security

Security Schemes

Parameters and Models

Parameters and Models

Mingle multiple services

Mingle multiple services

Declaring an API

First we need to create an OpenApi object to store information

    const openApi = new OpenApi(
        "1.0.0",                // API version
        "Server API",           // API title
        "Some test api",        // API description
        "[email protected]" // API maintainer email
    );

Then you need to declare an array with the API servers

In the event your API is based on docker instances you should call setServers when OpenApi class is called to get the json, to update the IPs and port numbers. You can even specify different servers depending if the call is internal or external. Up to you.

    openApi.setServers([
        { url: "https://api.domain.com:443" },
        { url: "https://192.168.1.23:80" }
    ]);

Optionally you can set your license information

This is used to document the API license type, url of the license and terms of service.

    openApi.setLicense(
        "Apache 2.0", // license name
        "http://www.apache.org/licenses/LICENSE-2.0.html", // url for the api license
        "http://swagger.io/terms/" // terms of service
    );

Now you need to declare your endpoints (once per http verb)

    openApi.addPath(
        "/hello",
        {
            get: {
                summary: "Server Healthcheck",          // Method title
                description: "Hello world endpoint",    // Method description
                operationId: "hello-op",                // unique operation id
                responses: {                            // response codes and description
                    200: textPlain("Successful operation."),
/*                  // or if you prefer:
                    200: {
                        description: "Successful operation.",
                        content: { "text-plain": {} },  // mimetype with empty schema
                    },*/
                },
                tags: ["Test Operations"],              // One or more tags, this will allow API grouping
            },
        },
        true                                            // visible ? If not it gets skipped from declaration
    );

Finally we export the JSON schema

Note that the paths just need to be added one time, during server init, after this the openApi is basically static.

    openApi.generateJson();

Declaring a GET request

    const errorSchema = Types.Object({
        description: "Error description",
        properties: {
            message: Types.String({ description: "Error message" }),
            code: Types.Integer({ description: "Error code" }),
        },
    });

    // body response schema
    const responseSchema = Types.Object({
        description: "Customer details",
        properties: {
            id: Types.Uuid({ description: "Customer ID" }),
            name: Types.String({
                description: "Customer name",
                maxLength: 100,
                required: true,
            }),
            type: Types.StringEnum({
                values: Object.values(CustomerType),
                description: "Customer Type",
            }),
            birthdate: Types.Date({ description: "Birthdate" }),
        },
    });

    openApi.addPath(
        "/customer/:id", // path parameter
        {
            get: {
                summary: "Get a customer data",
                description: "This operation retrieves customer information",
                operationId: "get-customer-op",
                requestSchema: {
                    params: { // path parameter
                        id: Types.Uuid({
                            description: "Customer ID",
                            required: true, // param values MUST be required
                            example: "37237d6a-bb7e-459a-b75d-d1733210ad5c",
                        }),
                    },
                },
                tags: ["Customer Operations"],
                responses: {
                    200: openApi.declareSchema("Get customer success", responseSchema),
                    400: openApi.declareSchema("Bad Request", errorSchema),
                },
            },
        },
        true
  );

Declaring other HTTP methods

You can declare:

  • delete requests
  • get requests
  • patch requests
  • post requests
  • put methods

Declaring the inputs of your request

When you declare your request you can use as inputs:

  • query parameters '?a=1&b=2'
  • param parameter '/:userid/list'
  • cookie parameter (a cookie)
  • header parameters
  • body content

Sample server

GitHub Repo for a demo server

ts-openapi's People

Contributors

nelsongomes avatar dependabot[bot] avatar perry-mitchell avatar kjkeefe avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.