• This repository has been archived on 15/Jan/2022
  • Stars
    star
    779
  • Rank 56,337 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 7 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

API blueprint toolkit

snowboard

Docker Repository on Quay

API blueprint toolkit.

Winter theme with playground enabled

Packages

NPM Version
snowboard npm version
snowboard-reader npm version
snowboard-parser npm version
snowboard-helper npm version
snowboard-linter npm version
snowboard-mock-router npm version
snowboard-seeder npm version
snowboard-packer npm version
snowboard-theme-helper npm version
snowboard-theme-winter npm version

Docker

You can also use automated build docker image on quay.io/bukalapak/snowboard:

$ docker pull quay.io/bukalapak/snowboard
$ docker run -it --rm quay.io/bukalapak/snowboard help

To run snowboard with the current directory mounted to /doc:

$ docker run -it --rm -v $PWD:/doc quay.io/bukalapak/snowboard html -o outDir API.apib

Usage

Let's say we have API Blueprint document called API.apib, like:

# API
## GET /message
+ Response 200 (text/plain)

        Hello World!

There are some scenarios we can perform, like:

# generate HTML documentation
$ snowboard html -o outDir API.apib

# run mock server
$ snowboard mock API.apib

# and more, see sections below

HTML Documentation

To generate HTML documentation, we can do:

$ snowboard html -o outDir API.apib

Above command will generate HTML documentation in output directory using snowboard default template (called winter).

Template Overrides

Snowboard let you override part of the template, you can override template, javascript and stylesheet. You can define it under html config:

const { resolve } = require("path");

module.exports = {
  html: {
    overrides: {
      "pages/Home.svelte": resolve(process.cwd(), "custom/Home.svelte"),
      "lib/helper/colorize.js": resolve(process.cwd(), "custom/colors.js"),
      "index.css": resolve(process.cwd(), "path-to-style.css")
    }
  }
};

HTTP Server

If you want to access HTML documentation via HTTP, you can use http sub-command:

$ snowboard http API.apib

With this flag, you can access HTML documentation on localhost:8088.

If you need to customize binding address, you can use flag -b.

API Playground

You can activate the playground feature to let your users interact with your staging or even production API.

Playground requires a configuration contains supported environments and the name of the default environment. On each environment, you can set an authentication option.

Here's the example of playground configuration along with the different authentication combination supported:

module.exports = {
  html: {
    playground: {
      enabled: true,
      hidden: false,
      env: "development",
      environments: {
        development: {
          url: "http://localhost:8087/",
          auth: {
            name: "apikey",
            options: {
              key: "api-dev-key",
              header: "X-Api-Key"
            }
          }
        },
        staging: {
          url: "https://staging.example.com/",
          auth: {
            name: "basic",
            options: {
              username: "admin",
              password: "secret"
            }
          }
        },
        production: {
          url: "https://api.example.com",
          auth: {
            name: "oauth2",
            options: {
              authorizeUrl: "https://accounts.example.com/oauth/authorize",
              tokenUrl: "https://accounts.example.com/oauth/access_token",
              callbackUrl: "https://www.example.com",
              clientId: "<client-id>",
              scopes: "<scope-names>"
            }
          }
        }
      }
    }
  }
};

Once you have a configuration file, named snowboard.config.js, you can do:

$ snowboard html -o outDir API.apib

# http sub-command works too
$ snowboard http API.apib

To disable playground on particular environment, you can add playground: false under environment configuration, like:

module.exports = {
  html: {
    playground: {
      enabled: true,
      env: "development",
      environments: {
        development: {
          url: "http://localhost:8087/",
          playground: false
        },
        staging: {
          url: "https://staging.example.com/"
        }
      }
    }
  }
};

Mock Server

Another snowboard useful feature is having a mock server. You can use mock sub-command for that.

$ snowboard mock API.apib

Then you can use localhost:8087 for accessing mock server. You can customize the address using flag -b.

For multiple responses, you can set Prefer header to select a specific response:

Prefer: status=200

You can also supply multiple inputs for mock sub-command:

$ snowboard mock API.apib OTHER.apib

Mock Server Authentication

The mock server supports various authentication, you can enable that by passing a configuration file using configuration file snowboard.config.js, like:

$ snowboard mock API.apib

Here's the example of the configuration file for mock server:

API key authentication

module.exports = {
  mock: {
    auth: {
      name: "apikey",
      options: {
        key: "<api-key>",
        header: "<Header-Name>"
      }
    }
  }
};

Basic authentication

module.exports = {
  mock: {
    auth: {
      name: "basic",
      options: {
        username: "<username>",
        password: "<password>"
      }
    }
  }
};

Other Features

Besides the above features, snowboard also has several useful features for working with API blueprint:

Validate API blueprint

Besides rendering to HTML, snowboard also support validates API blueprint document. You can use lint sub-command.

$ snowboard lint API.apib

Using flag --json, you will receive output as JSON format.

Render API Element JSON

In case you need to get API element JSON output for further processing, you can use:

$ snowboard json API.apib

List Routes

If you need to list all available routes for current API blueprints, you can do:

$ snowboard list API.apib ANOTHER.apib

Using flag --json, you will receive output as JSON format.

SSL Support

To enable HTTPS server, both http, and mock subcommand supports SSL configuration. You can do:

# http server
$ snowboard http -S -C cert.pem -K key.pem API.apib

# mock server
$ snowboard mock -S -C cert.pem -K key.pem API.apib

For example, for local development, you can utilize mkcert to create your local development certificate and use it with snowboard:

# generate localhost certificate
$ mkcert -install
$ mkcert localhost

# use the generated certificate with snowboard http or mock subcommand
$ snowboard http -S -C localhost.pem -K localhost-key.pem API.apib

# you can now access using https://localhost:8088/

Watcher Support

To enable auto-regeneration on input files updates, you can add global flag --watch

$ snowboard html --watch -o outDir API.apib

# http server
$ snowboard http --watch API.apib

Help

$ snowboard help
API blueprint toolkit

VERSION
  snowboard/4.0.0

USAGE
  $ snowboard [COMMAND]

COMMANDS
  apib  render API blueprint
  help  display help for snowboard
  html  render HTML documentation
  http  serve HTML documentation
  json  render API elements json
  lint  validate API blueprint
  list  list API routes
  mock  run mock server

More Repositories

1

pybrisque

A python implementation of BRISQUE Image Quality Assessment
Python
217
star
2

KTPextractor

This is a service which takes KTP image as the input, and extract the data in the KTP as the output. This is a part of open source project by Data Scientists of Bukalapak.
Python
56
star
3

bukalapak.js

Javascript API wrapper
JavaScript
33
star
4

UniversalViewCell

Swift
28
star
5

neuro

A wrapper for easily routing URL on Android
Kotlin
25
star
6

vanadia

Export API Blueprint .apib file to Postman collection
Go
18
star
7

ottoman

Reusable components for Golang
Go
15
star
8

redis-cluster

Redis Cluster client for Ruby
Ruby
9
star
9

envsync

Synchronize .env
Go
9
star
10

toggleable

Toggleable gem for feature toggler purposes
Ruby
9
star
11

tslint-config-semistandard

A TSLint config for JavaScript Standard Style with semicolons
JavaScript
7
star
12

typhoon

Performance Test Web-Based Tool
Ruby
6
star
13

url-router

A wrapper for easily routing URL on Android
Kotlin
6
star
14

pkce-npm

PKCE code verifier and challenge generator.
TypeScript
6
star
15

emcd

Text Protocol Elixir Memcached Client
Elixir
5
star
16

mson-playground

Interactive MSON Playground
JavaScript
4
star
17

protor-ruby

prometheus aggregator client for ruby
Ruby
4
star
18

godec

Decorator Fabricator
Go
3
star
19

bulog

An alternative output destination for the standard library log package
Go
3
star
20

dallimin

Dalli compatible server selector for Golang (gomemcache)
Go
2
star
21

BD-Handling-Vs

Handling Vs in Big Data: Velocity, Volume, and Variety
Jupyter Notebook
2
star
22

bilibot

CoffeeScript
1
star
23

bukadata

Data supplier plugin for populating design with real data.
JavaScript
1
star
24

cachexp

Cache expansion engine
Go
1
star
25

blokade

simple blocker proxy
Go
1
star
26

mkdash

MKDash create a dashboard with prebuilt template in a dash
Go
1
star
27

buffon

Aggregator engine
Go
1
star
28

omniauth-bukalapak

OmniAuth strategy for Bukalapak
Ruby
1
star
29

simple-fragment-loader

Super simple fragment loader for demo purposes.
JavaScript
1
star
30

snowboard-theme-osaka

Snowboard theme using React
JavaScript
1
star
31

purwa

A microservice boilerplate
Elixir
1
star
32

bukabounty

JavaScript
1
star