Skip to content

A server to add CORS headers to a proxied request.

Notifications You must be signed in to change notification settings

egfx/cors-server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CORS-Anywhere Server

CORS-Anywhere is a Node.js package that adds CORS headers to a proxied request. This is useful when the API provider does not natively support CORS. Without altering the headers, a request to such a provider would cause an error and prevent the request from being fulfilled.

Tip: You can test out the server in this repo locally by using port 3000 in your application and prepending https://private-cors-server.herokuapp.com/ to your API request like this. However, if you want to use for a hosted website, then follow the implementation steps below.

Implementation

Implementation of a basic CORS-Anywhere server is very straightforward. Simply do the following:

  1. Clone or fork this repository.
  2. Within server.js, replace the website string in the originWhitelist array with the web address(es) that you want to authorise. You can keep the first string here as is for local testing (assuming you're using port 3000).
  3. Now simply upload / push the repo to a hosting provider. I used a free Heroku account to create a Node.js app. This can be done without any knowledge of Node, and only a basic familiarity with Git and the command line. Just follow the excellent documentation here (steps 3 to 6 inclusive can be ignored).
  4. Prepend the API request in your application code with the server URL as generated in the previous step like so. That's it, you've implemented the server!

Tip: If hosting on Heroku, a Procfile has already been created in this repository. This instructs the Heroku Node app on how to start the server.

Note: Heroku's acceptable use policy forbids the use of an open proxy (see part 6, item XVIII). Therefore, make sure to follow point 2 above. Leaving the array empty authorises all requests and therefore violates the AUP.

About

A server to add CORS headers to a proxied request.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%