OpenCORS is a simple NodeJS based CORS Proxy
- ✅ 0 Dependencies
- ✅ Follow redirects
- ✅ Plain output
- ✅ SSL
git clone https://github.com/nuzulul/opencors.git
npm install
npm start
https://codesandbox.io/p/devbox/nodejs-cors-proxy-xqsqwg
npm install opencors
import {OpenCORS} from 'opencors'
const server = new OpenCORS({
//port:4000,
//front: '<h1>opencors</h1>'
})
const {OpenCORS} = require('opencors')
const server = new OpenCORS({
//port:4000,
//front: '<h1>opencors</h1>'
})
Request examples:
https://xqsqwg-8080.csb.app/?url=https://www.google.com/
- Raw Google.com with CORS headers
fetch('https://xqsqwg-8080.csb.app/?url=https://www.google.com/').then(function (response){
return response.text()
}).then(function (html){
console.log(html)
}).catch(function (err){
console.warn('Something went wrong.',err)
})
MIT