Socket
Socket
Sign inDemoInstall

cors-anywhere

Package Overview
Dependencies
92
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cors-anywhere

CORS Anywhere is a reverse proxy which adds CORS headers to the proxied request. Request URL is taken from the path


Version published
Weekly downloads
20K
decreased by-0.02%
Maintainers
1
Install size
2.36 MB
Created
Weekly downloads
 

Readme

Source

CORS Anywhere is a NodeJS proxy which adds CORS headers to the proxied request.

The url to proxy is literally taken from the path, validated and proxied. The protocol part of the proxied URI is optional, and defaults to "http". If port 443 is specified, the protocol defaults to "https".

This package does not put any restrictions on the http methods or headers, except for cookies. Requesting user credentials is disallowed. The app can be configured to require a header for proxying a request, for example to avoid a direct visit from the browser.

Redirects are not automatically followed. Instead, the server replies with http status code 333 and includes an absolute URL in the Location response header.

The package also includes a Procfile, to run the app on Heroku. More information about Heroku can be found at https://devcenter.heroku.com/articles/nodejs.

Example

// Heroku defines the environment variable PORT, and requires the binding address to be 0.0.0.0
var host = process.env.PORT ? '0.0.0.0' : '127.0.0.1';
var port = process.env.PORT || 8080;

var cors_proxy = require('cors-anywhere');
cors_proxy.createServer({
    requireHeader: ['origin', 'x-requested-with'],
    removeHeaders: ['cookie', 'cookie2']
}).listen(port, host, function() {
    console.log('Running CORS Anywhere on ' + host + ':' + port);
});

Request examples:

  • http://localhost:8080/http://google.com/ - Google.com with CORS headers
  • http://localhost:8080/google.com - Same as previous.
  • http://localhost:8080/google.com:443 - Proxies https://google.com/
  • http://localhost:8080/ - Shows usage text, as defined in libs/help.txt
  • http://localhost:8080/favicon.ico - Replies 404 Not found

Live examples:

Documentation

Client

Learn how to use the API in a web app by viewing the source code of demo.html and reading lib/help.txt.

Server

The module exports two properties: getHandler and createServer.

  • getHandler(options) returns a handler which implements the routing logic. This handler is used by http-proxy.
  • createServer(options) creates a server with the default handler.

The following options are recognized by both methods:

  • array of strings requireHeader - If set, the request must include this header or the API will refuse to proxy. Recommended if you want to prevent users from using the proxy for normal browsing. Example: ['Origin', 'X-Requested-With'].
  • array of lowercase strings removeHeaders - Exclude certain headers from being included in the request. Example: ["cookie"]

createServer recognizes the following option as well:

  • httpProxyOptions - Options for http-proxy. The documentation for these options can be found here.

Dependencies

License

Copyright (C) 2013 Rob Wu gwnRob@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Last updated on 27 Aug 2013

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