This package has been deprecated

Author message:

"!!NO LONGER_MAINTAINED"

apeman-app-proxy

4.0.0 • Public • Published

apeman-app-proxy

Build Status Code Climate Code Coverage npm Version JS Standard

apeman app for proxy.

Installation

$ npm install apeman-app-proxy --save

Usage

  1. Define an app within Apemanfile.js
  2. Call the app via apeman app command.

Apemanfile.js

/** This is an example Apemanfile to use apeman-app-proxy */
 
'use strict'
 
module.exports = {
  $pkg: { /* ... */ },
  $apps: {
    'ui:proxy:api': {
      '*': [
        require('apeman-app-proxy')(/^\api\//, {
          // Configurations for node-http-proxy
          target: 'http://localhost:3001'
        }, {
          // Optional settings.
        })
      ]
    },
    'my-app-01': [
      'ui:proxy:api',
      (ctx, next) => {
        /* ... */
      }
    ]
 
  }
}
 

Then,

$ apeman app my-app-01 -p 3000

Signature

apemanAppProxy(pattern, config, options) -> function

apeman app for proxy.

Args
Name Type Default Description
pattern string URL pattern to apply proxy.
config object Proxy configuration.
options object Optional settings.

License

This software is released under the MIT License.

Links

Readme

Keywords

Package Sidebar

Install

npm i apeman-app-proxy

Weekly Downloads

4

Version

4.0.0

License

MIT

Last publish

Collaborators

  • okunishinishi