https://github.com/theiterators/cors-buster
Simple, lightweight proxy that bypasses CORS intended for development
https://github.com/theiterators/cors-buster
Last synced: 5 months ago
JSON representation
Simple, lightweight proxy that bypasses CORS intended for development
- Host: GitHub
- URL: https://github.com/theiterators/cors-buster
- Owner: theiterators
- License: apache-2.0
- Created: 2016-02-16T22:10:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-02-12T10:50:46.000Z (over 5 years ago)
- Last Synced: 2024-03-18T00:21:42.367Z (over 2 years ago)
- Language: Scala
- Homepage:
- Size: 47.9 KB
- Stars: 5
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cors-buster

cors-buster is a simple reverse proxy that provides all the basic CORS headers. Use it only for development!
It's in a very early stage, so please report bugs through GitHub issues or via email.
## Usage
cors-buster requires Java 8 to work properly.
```
wget https://github.com/theiterators/cors-buster/releases/download/1.0.1/cors-buster-1.0.1.jar
java -jar cors-buster-1.0.1.jar proxyHost proxyPort serverHost serverPort
```
For example
```
java -jar cors-buster-1.0.1.jar 0.0.0.0 8080 localhost 9000
```
will set up a proxy listening on 0.0.0.0:8080 and will forward all requests to server running on localhost:9000.
## Author & license
If you have any questions regarding this project contact:
Łukasz Sowa from [Iterators](https://iterato.rs).
For licensing info see LICENSE file in project's root directory.