koa-nginx
Middleware for koa2. Reverse proxy middleware for koa. Proxy resources on other servers, such as Java services, and other node.js applications. Based on http-proxy library.
Require
node v7.x +
Installation
First install node.js(v7.6.0 or higher). Then:
$ npm i koa-ngnix --save
Usage
When you request url contains terminal, it will transmit to http://127.0.0.1:3000/ !
const Koa = require('koa');
const Proxy = require('koa-nginx');
const app = new Koa();
const Ngnix = Proxy.proxy({
proxies: [
{
host: 'http://localhost:3333/',
context: 'ngnix'
},
]
});
app.use(Ngnix);
app.listen(3000);
API
Options
logLevel
logging level。unrequired,String,default 'info'. logging levels are prioritized from 0 to 5 (highest to lowest):
logLevel | level |
---|---|
error | 0 |
warn | 1 |
info | 2 |
verbose | 3 |
debug | 4 |
silly | 5 |
-
proxyTimeout
timeout for outgoing proxy requests.unrequired,the values are in millisecond,Number,default 30000 -
rewrite
rewrites the url redirects.unrequired,Funtion, defaultpath.replace(context, '')
-
handleReq
This event is emitted before the data is sent. It gives you a chance to alter the proxyReq request object. Applies to "web",includeproxyReq
,req
,res
,options
const Ngnix = Proxy;
-
handleRes
This event is emitted if the request to the target got a response,includeproxyRes
,req
,res
-
error
The error event is emitted if the request to the target fail,includeerr
,req
,res
-
proxies
koa-ngnix important parameter,required,expect get array,Each of the internal objects is a proxy combination, and some of the internal parameters can override globally parameters of the same name.target
url string to be parsed with the url modulecontext
Local proxy root address,required,string formatlogs
unrequired,Boolean, default truerewrite
unrequired,FunctionproxyTimeout
unrequired,Number
Most options based on http-proxy.
- host: the end point server
- context: the request url contains the 'context' will be proxy
const Ngnix = Proxy;app;
License
MIT License
Copyright (c) 2017 yong.liu
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.