
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
koa2-pixie-proxy
Advanced tools
A simple but flexible proxy middlware for koa2. Forked from koa-pixie-proxy due to lack of support for Koa2.
npm i --save koa2-pixie-proxy
const pixie = require('koa2-pixie-proxy');
const Koa = require('koa');
const router = require('koa-router');
const app = new Koa();
app.use(router(app));
var proxy = pixie({host: 'http://example.com'});
// Proxy requests to server/hurp to example.com/durp
app.get('/hurp', proxy('/durp'));
// works with url params as long as they match the url params
// in the request to your server
app.get('some/:param/here/:id', proxy('someother/:param/maybesomethingelse/:id/durp'));
// if you leave out a url it proxies to host + this.url
app.post('/foobar', proxy());
To allow later middleware to modify the response, koa2-pixie-proxy
will
set response headers, status and body but won't actually send the result to the
client. This means you give up nice proxy pipelining, but you can do things like
modify the result of a proxy like this:
app.get('/hurp', proxy('/durp'), (ctx) => {
// add a property to the body already proxied
ctx.body.beans = 'baz';
});
FAQs
A simple but flexible proxy middlware for koa2
The npm package koa2-pixie-proxy receives a total of 0 weekly downloads. As such, koa2-pixie-proxy popularity was classified as not popular.
We found that koa2-pixie-proxy 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.