1.0.0 • Published 7 years ago

mockiji-proxy-middleware v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

Mockiji-Proxy-Middleware

A basic proxy middleware for Mockiji.

Usage

const Mockiji = require('mockiji');

const server = new Mockiji({
  configuration: {
    middlewares: [
      require('mockiji-proxy-middleware')({
        checkMockStatus: true,
        paths: {
          '/api/test/book/.*': 'my-books-api.local',
          '/api/test/user/[0-9]+': '127.0.0.1:8083',
        },
      })
    ]
  }
});

server.start();

Parameters

NameDefaultDescription
checkMockStatustrueIf set to true proxying will only happen if Mockiji could not find a mock file matching the request
timeout60Timeout in seconds for proxied requests
paths{}An object in which keys are regular expressions and values are the hosts the requests should be redirected to