1.0.5 • Published 3 months ago

opencors v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

OpenCORS

OpenCORS is a simple NodeJS based CORS Proxy

NPM npm version

Features

  • ✅ 0 Dependencies
  • ✅ Follow redirects
  • ✅ Plain output
  • ✅ SSL

Qiuck Start

Local

git clone https://github.com/nuzulul/opencors.git
npm install
npm start

Deploy

Deploy with Vercel

Demo

https://codesandbox.io/p/devbox/nodejs-cors-proxy-xqsqwg

Installation

npm install opencors

Example Usage

Server (NodeJS)

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

Client (Browser)

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)
})

License

MIT

1.0.5

3 months ago

1.0.4

3 months ago

1.0.3

4 months ago

1.0.2

4 months ago

1.0.1

4 months ago

1.0.0

4 months ago