Socket
Socket
Sign inDemoInstall

simple-http-proxy

Package Overview
Dependencies
1
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    simple-http-proxy

Simple proxy middleware


Version published
Weekly downloads
186
decreased by-29.55%
Maintainers
1
Install size
21.5 kB
Created
Weekly downloads
 

Readme

Source

simple-http-proxy Build Status

Simple proxy middleware for connect/express

Usage

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));

Options

cookies

Disable sending cookies by passing false; on by deafult.

xforward

Setting 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'
}
timeout

A positive millisecond value for the timeout of the request. Defaults to 10000 (10s).

Setting it to false will disable the timeout.

onrequest

A 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.

onresponse

A 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.

Tests

$ npm test

Keywords

FAQs

Last updated on 09 May 2014

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc