
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
simple-http-proxy
Advanced tools

Simple proxy middleware for connect/express
Create an http app
/**
* Module dependencies
*/
var express = require('express');
var proxy = require('simple-http-proxy');
/**
* Expose the app
*/
var app = module.exports = express();
/**
* Mount the proxy middleware
*/
app.use('/api', proxy('http://my.other.host.com/path-to-proxy'));
Make the request
$ curl http://localhost:5000/api
<h1>Welcome to my.other.host.com/path-to-proxy</h1>
You can also specify some options as a second parameter
app.use('/api', proxy('http://my.other.host.com/path-to-proxy', opts));
cookiesDisable sending cookies by passing false; on by deafult.
xforwardSetting this to true will set x-forwarded-proto, x-forwarded-host, x-forwarded-port and x-forwarded-path headers.
Passing an object will override the header names:
{
proto: 'x-orig-proto',
host: 'x-orig-host',
port: 'x-orig-port',
path: 'x-orig-path'
}
timeoutA positive millisecond value for the timeout of the request. Defaults to 10000 (10s).
Setting it to false will disable the timeout.
onrequestA function to be called on each request. The first parameter will be the options object for the http request. The second will be the request object.
This can be used to change any of the http options for a given request.
onresponseA function to be called on each response. The first parameter will be the incoming message for a given request. The second will be the server response object.
If this function returns true the default pipe will not be used and will be up to the onresponse function to implement that behavior. This is useful for rewriting responses that are sent to the client.
$ npm test
FAQs
Simple proxy middleware
We found that simple-http-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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.