Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

FieldDB/CorpusWebService

Open more actions menu
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

As a standalone tool:

$ npm install -g corsproxy

As a dependency:

$ npm install corsproxy

Running

Standalone:

$ corsproxy
CORS Proxy started on localhost:9292

Standalone with custom host/port:

$ corsproxy 0.0.0.0 1234
CORS Proxy started on 0.0.0.0:1234

As a dependency:

var cors_proxy = require("corsproxy");
var http_proxy = require("http-proxy");
http_proxy.createServer(cors_proxy).listen(1234);

With custom target:

var cors_proxy = require("corsproxy");
var http_proxy = require("http-proxy");
cors_proxy.options = {
    target: "http://127.0.0.1:5984"
};
http_proxy.createServer(cors_proxy).listen(1234);

Usage

The cors proxy will start at http://localhost:9292. To access another domain, use the domain name (including port) as the first folder, e.g.

http://localhost:9292/localhost:3000/sign_in
http://localhost:9292/my.domain.com/path/to/resource
etc etc

About

über-simple node.js-Proxy to enable CORS request for couchdb

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 71.9%
  • CoffeeScript 16.4%
  • Shell 9.9%
  • Dockerfile 1.8%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.