You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

simple-http-proxy

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-http-proxy

Simple proxy middleware

0.5.6
Source
npmnpm
Version published
Weekly downloads
73
25.86%
Maintainers
1
Weekly downloads
 
Created
Source

simple-http-proxy Build Status

Simple proxy middleware for connect/express

Usage

Create an http app

/**
 * Module dependencies
 */
var express = require("express")
  , 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

// snip

app.use("/api", proxy("http://my.other.host.com/path-to-proxy", {

  // Disable sending cookies; on by deafult
  cookies: false,

  // Add x-forwarded-* headers to proxy request
  xforward: true,

  // Change the timeout length of the proxy (defaults to 10 seconds)
  timeout: 20000
}));

// snip

Keywords

proxy

FAQs

Package last updated on 31 Aug 2013

Did you know?

Socket

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