Git Product home page Git Product logo

local-api-gateway's Introduction

Local API Gateway npm-version

This tool simplifies the process of exposing multiple separate Docker based HTTP APIs through a single gateway. This tool aims to take care of:

Exactly what does this tool do:

  • Clones and builds the repositories you configure.
  • Merges the Dockerfile/docker-compose.yml files across your repositories into a single docker-compose.yml file.
  • Creates a gateway container accessible via HTTP which can route traffic based on paths to your other containers.
  • Provides facilities for adding middleware to modify the request/response.

As part of the merge process the following changes are made to the input docker-compose.yml files:

  • services in each of the docker-compose.yml files are renamed to avoid conflicts between each of the repositories.
  • Mounted volumes are updated to be relative to the merged docker-compose.yml location.
  • links are updated to reference the new service names in the merged config.
  • All host port mappings are removed to avoid conflicts.

Prerequisites

Before installing this tool you need to install:

  • Node 12+
  • NPM 6+
  • Docker 19+
  • Docker Compose 1.25.5+
  • Git CLI

Installation

npm install -g @local-api-gateway/cli

Upgrading

# upgrade the cli tool
npm install -g @local-api-gateway/cli

# rebuild the gateway container (run in the directory of the local-api-gateway.yml file)
local-api-gateway build

Usage

Command line

local-api-gateway [command] [options]

The CLI tool acts as a proxy to the docker-compose CLI. Any command and arguments supported by docker-compose can be used: https://docs.docker.com/compose/reference/overview/

The tool should be executed in a directory which contains a local-api-gateway.yml file, refer to the Configuration file format section for more information.

up

$ local-api-gateway up

  • Checks out and builds the integrations specified in local-api-gateway.yml then runs docker-compose up.

Options:

  • --no-build-config - Skip rebuilding the files in the .local-api-gateway folder.
build

$ local-api-gateway build

  • Checks out and builds the integrations specified in local-api-gateway.yml then runs docker-compose build.

Options:

  • --no-build-config - Skip rebuilding the files in the .local-api-gateway folder.
ssh

$ local-api-gateway ssh [integration name]

  • SSH into the integration specified.
lint

$ local-api-gateway lint

  • Uses Spectral to validate the local-api-gateway.yml conforms to the configured linting rules.

Configuration file format

name: my-gateway-name # the name of the gateway

gateway:
  host: 127.0.0.1 # interface to bind the gateway container on.
  port: 8080 # port to bind the gateway container on.

middleware:
  cors:
    # cors middleware options, accepted options are documented here:
    # https://expressjs.com/en/resources/middleware/cors.html#configuration-options.
  traceId:
    header: "Trace-Id" # the name to use for the trace ID header, default: X-Trace-Id.
  myMiddleware:
    # additional custom middleware files can also be used, the path is relative to the working directory.
    # the middleware is attached to all paths and applied before routing to the integration.
    # more information: https://expressjs.com/en/guide/using-middleware.html
    path: "./middleware/my-middleware.js"

integrations:
  dockerComposeIntegration:
    type: docker-compose # identifies that this is a docker-compose based integration.
    source: # used to identify where the integration should be pulled from during initial setup.
      type: vcs
      url: [email protected]:my-org/example-api.git
    destination: ../example-api # path to checkout source to, relative to the working directory.
    build: "build.sh" # build command to run on initial checkout, executed in destination directory, can be specified as an array of strings for multiple commands.
    context: containers # path to folder containing the docker-compose.yml file, relative to the destination directory.
    services:
      nginx: # name of the service in the docker-compose.yml to route the traffic to, default: first service.
        routes:
         - port: 80 # port on the integration container to route traffic to.
           paths:
            # array of paths on the gateway to route to this integration.
            - "/example"
            - "/example/*"
        networks:
          shared:
            aliases:
              - docker-compose-integration-alias

  dockerIntegration:
    type: docker # identifies that this is a docker based integration.
    source: # used to identify where the integration should be pulled from during initial setup.
      type: vcs
      url: [email protected]:my-org/example2-api.git
    destination: ../example2-api # path to checkout source to, relative to the working directory.
    build: "build.sh" # build command to run on initial checkout, executed in destination directory, can be specified as an array of strings for multiple commands.
    context: docker # path to folder containing the docker-compose.yml file, relative to the destination directory.
    routes:
     - port: 80 # port on the integration container to route traffic to.
       paths:
        # array of paths on the gateway to route to this integration.
        - "/example2"
        - "/example2/*"
    networks:
     - shared

  # you can create networks which are used by multiple integrations.
  # note that the host name of the service you are accessing will be different than what is defined initially.
  # for multi-service integrations it will be "integrationName.serviceName", for single service integrations it will be
  # "integrationName".
  networks:
    shared:
      type: bridge

  # configure DNS rules to apply to all containers.
  extraHosts:
    - "google.com:127.0.0.1"

FAQ

What is the .local-api-gateway folder?

This folder is maintained by the CLI tool. It is used as a build directory for holding the merged docker-compose.yml and related files.

This folder is shared inside of the gateway container and should not be manually modified.

Why aren't the changes I've made to local-api-gateway.yml, docker-compose.yml or middleware files being reflected by the gateway?

After making changes to the gateway configuration you need to stop the gateway and re-run the up command.

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.