Cross-origin resource sharing (CORS) topic

Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources on a web page to be accessed from another domain outside the domain from which the first resource was served. CORS also relies on a mechanism by which browsers make a "preflight" request to the server hosting the cross-origin resource, in order to check that the server will permit the actual request. In that preflight, the browser sends headers that indicate the HTTP method and headers that will be used in the actual request. For security reasons, browsers restrict cross-origin HTTP requests initiated from scripts. For example, fetch() and XMLHttpRequest follow the same-origin policy. This means that a web application using those APIs can only request resources from the same origin the application was loaded from unless the response from other origins includes the right CORS headers.

Resource types

  • Invocations of fetch() or XMLHttpRequest
  • Web Fonts (for cross-domain font usage in @font-face within CSS), so that servers can deploy TrueType fonts that can only be loaded cross-origin and used by websites that are permitted to do so
  • WebGL textures
  • Images/video frames drawn to a canvas using drawImage()
  • CSS shapes from images
  • scripts
  • iframes

List Cross-origin resource sharing (CORS) repositories

cors

7
Stars
0
Forks
Watchers

Bypass CORS

cross-origin

579
Stars
184
Forks
Watchers

A collection of simple demos of CORS

allowcors

6
Stars
0
Forks
Watchers

AllowCORS is a multi-backend reserve proxy built to bypass same-origin policy

fasthttpcors

22
Stars
4
Forks
Watchers

Cors Handler for fasthttp

Google-Docs-Clone-Client

21
Stars
5
Forks
Watchers

A Real-Time Collaborative Editor based on Vuejs, SocketIO and Vuetify. Uses MongoDB as the database and Mongoose as the ORM

bypass-cors

35
Stars
19
Forks
Watchers

a proxy server to bypass CORS enabled servers

browser-preview

194
Stars
36
Forks
Watchers

🎢Preview html file in your default browser

corsica

517
Stars
39
Forks
Watchers

Elixir library for dealing with CORS requests. 🏖

node-cors-client

69
Stars
41
Forks
Watchers

A test application that helps illustrate CORS while both in a working state and a non-working state across simple and complex request scenarios.