Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

cdproxy

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cdproxy

connect and express middleware for proxying cross domain requests.

latest
npmnpm
Version
0.0.3
Version published
Weekly downloads
6
500%
Maintainers
1
Weekly downloads
 
Created
Source

Connect and Express middleware for proxying cross domain requests. Useful for avoiding JSONP and CORS support.

##Installation

$ npm install cdproxy

##Usage

var cdproxy = require('cdproxy');

connect()
    .use(cdproxy('myprefix')) //proxy by default.
    .use(function ( req, res ) {
        res.end("Hello from Connect!");
    })
    .listen(8000);

//GET http://localhost:8000/myprefix/http://myremote.server

cdproxy will reuse the req that receives from express/connect and override the host header only.

##Running unit tests

$npm test

or simply

$mocha

FAQs

Package last updated on 05 Jul 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