All Projects → Zibri → Cloudflare Cors Anywhere

Zibri / Cloudflare Cors Anywhere

Licence: mit
CORS "anywhere" proxy in a Cloudflare worker. DEMO at: https://test.cors.workers.dev/

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Cloudflare Cors Anywhere

Tree Gateway
This is a full featured and free API Gateway
Stars: ✭ 160 (-1.23%)
Mutual labels:  free, proxy
Golang Proxy
Golang version of proxy mining tool with evaluation system
Stars: ✭ 163 (+0.62%)
Mutual labels:  free, proxy
Proxy List
Get PROXY List that gets updated everyday
Stars: ✭ 347 (+114.2%)
Mutual labels:  free, proxy
Bus
Bus 是一个基础框架、服务套件,它基于Java8编写,参考、借鉴了大量已有框架、组件的设计,可以作为后端服务的开发基础中间件。代码简洁,架构清晰,非常适合学习使用。
Stars: ✭ 253 (+56.17%)
Mutual labels:  proxy, cors
Freeproxy
免费、高速的 V2Ray 代理和订阅。
Stars: ✭ 104 (-35.8%)
Mutual labels:  free, proxy
Awesome Vpn
Free VPN/proxy,server,account,link list.,实时更新免费的代理,科学上网,翻墙,梯子,服务器,客户端,账号
Stars: ✭ 2,691 (+1561.11%)
Mutual labels:  free, proxy
Dosvpn
🚀 极速、简单、开源的 VPN 访问外网学习先进科学技术的必备工具
Stars: ✭ 485 (+199.38%)
Mutual labels:  free, proxy
Cross Origin
🌀 跨域demo。CORS、JSONP、postMessage、websocket、document.domain、window.name、iframe等示例
Stars: ✭ 475 (+193.21%)
Mutual labels:  proxy, cors
Smargate
内网穿透,c++实现,无需公网IP,小巧,易用,快速,安全,最好的多链路聚合(p2p+proxy)模式,不做之一...这才是你真正想要的内网穿透工具!
Stars: ✭ 1,378 (+750.62%)
Mutual labels:  free, proxy
Airtable Proxy Worker
A Cloudflare Worker that allows you to make secure requests to the Airtable API from your frontend.
Stars: ✭ 87 (-46.3%)
Mutual labels:  proxy, cloudflare
Instagram Proxy Api
CORS compliant API to access Instagram's public data
Stars: ✭ 245 (+51.23%)
Mutual labels:  proxy, cors
Bhadoo Cloud
Directly Upload to Google Drive from Torrent or URLs
Stars: ✭ 136 (-16.05%)
Mutual labels:  proxy, cloudflare
Flaresolverr
Proxy server to bypass Cloudflare protection
Stars: ✭ 241 (+48.77%)
Mutual labels:  proxy, cloudflare
php-proxy
php proxy based on GoAgent protocal,Implemented by golang
Stars: ✭ 85 (-47.53%)
Mutual labels:  cloudflare, free
Learn Nginx
Nginx 入门指南
Stars: ✭ 728 (+349.38%)
Mutual labels:  proxy, cors
Workers
Cloudflare Workers
Stars: ✭ 111 (-31.48%)
Mutual labels:  proxy, cors
Google Mirrors
Google谷歌、Wikipedia维基百科、谷歌学术镜像2021年1月最新 新增各种镜像站
Stars: ✭ 146 (-9.88%)
Mutual labels:  free, proxy
Imaginary Teleprompter
Professional grade, free software, teleprompter app.
Stars: ✭ 157 (-3.09%)
Mutual labels:  free
Using Zend Framework 3 Book
A free and reader-friendly book on Zend Framework 3
Stars: ✭ 160 (-1.23%)
Mutual labels:  free
Gophertunnel
Toolbox for Minecraft software written in Go
Stars: ✭ 156 (-3.7%)
Mutual labels:  proxy

cloudflare-cors-anywhere

Cloudflare CORS proxy in a worker.

CLOUDFLARE-CORS-ANYWHERE

Source: https://github.com/Zibri/cloudflare-cors-anywhere

Demo: https://test.cors.workers.dev

Donate: https://paypal.me/Zibri/5

Post: http://www.zibri.org/2019/07/your-own-cors-anywhere-proxy-on.html

Deploy workers: https://workers.cloudflare.com/

Example:

fetch('https://test.cors.workers.dev/?https://httpbin.org/post', {
  method: 'post',
  headers: {
    'x-foo': 'bar',
    'x-bar': 'foo',
    'x-cors-headers': JSON.stringify({
      // allows to send forbidden headers
      // https://developer.mozilla.org/en-US/docs/Glossary/Forbidden_header_name
      'cookies': 'x=123'
    }) 
  }
}).then(res => {
  // allows to read all headers (even forbidden headers like set-cookies)
  const headers = JSON.parse(res.headers.get('cors-received-headers'))
  console.log(headers)
  return res.json()
}).then(console.log)

Note:

All received headers are also returned in "cors-received-headers" header.

Note about the DEMO url:

Abuse (other than testing) of the demo will result in a ban.
The demo accepts only fetch and xmlhttprequest.

To create your own is very easy, you just need to set up a cloudflare account and upload the worker code.

My personal thanks to Damien Collis for his generous and unique donation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].