Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
koa2-nginx
Advanced tools
Fork by 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.
node v7.x +
First install node.js(v7.6.0 or higher). Then:
$ npm i koa2-nginx --save
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);
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
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,Numberevent
handleReq
This event is emitted before the data is sent. It gives you a chance to alter the proxyReq request object. Applies to "web",include proxyReq
,req
,res
,options
handleRes
This event is emitted if the request to the target got a response,include proxyRes
,req
,res
handleError
The error event is emitted if the request to the target fail,include err
,req
,res
const Ngnix = Proxy.proxy({
proxies: [
{
...
event: {
handleReq: proxyObj => {
{ proxyReq, req, res, options } = proxyObj;
proxyReq.setHeader('token', '123456')
console.log(proxyReq.getHeader('token'))
},
handleRes: proxyObj => {
{ proxyRes, req, res, options } = proxyObj;
proxyRes.headers.token = req.headers.customToken;
},
handleError: proxyObj => {
console.log('this is proxy error handler')
}
}
}
]
});
```
Most options based on http-proxy.
const Ngnix = Proxy.proxy({
proxies: [
{
target: 'http://127.0.0.1:3000',
context: 'api',
logs: false,
rewrite: path => path.replace('api', 'rewriteApi'),
proxyTimeout: 10000,
},
{
...
},
],
proxyTimeout: 5000,
logLevel: 'debug',
...
});
app.use(Ngnix);
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.
FAQs
This is an http-proxy koa proxy middleware that can be used after bodyparse
The npm package koa2-nginx receives a total of 59 weekly downloads. As such, koa2-nginx popularity was classified as not popular.
We found that koa2-nginx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.