1.0.0 • Published 5 years ago
ui5-middleware-cproxy v1.0.0
UI5 corporate proxy middleware
Middleware for ui5-server, enabling proxy support.
Install
npm install ui5-middleware-cproxy --save-devConfiguration options (in $yourapp/ui5.yaml)
- http_proxy: http|https://host:port
Usage
- Define the dependency in
$yourapp/package.json:
"devDependencies": {
// ...
"ui5-middleware-cproxy": "*"
// ...
},
"ui5": {
"dependencies": [
// ...
"ui5-middleware-cproxy",
// ...
]
}As the devDependencies are not recognized by the UI5 tooling, they need to be listed in the
ui5 > dependenciesarray. In addition, once using theui5 > dependenciesarray you need to list all UI5 tooling relevant dependencies.
- configure it in
$yourapp/ui5.yaml:
server:
customMiddleware:
- name: ui5-middleware-cproxy
beforeMiddleware: compression
mountPath: /
configuration:
http_proxy: http://172.16.0.38:808How it works
The middleware starts a global proxy instance at start of application using https://www.npmjs.com/package/node-global-proxy and it becomes available to most of modules including axios, node-fetch, got, etc.
License
This work is dual-licensed under ISC and the Derived Beer-ware License. The official license will be ISC but finally you can choose between one of them if you use this work.
1.0.0
5 years ago