Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Allow Access Control Origin in Create React App

In this guide, you will learn about cross-origin resource sharing (CORS) and the role of the "Allow Access Control Origin" header, which will help you resolve issues related to CORS.

Sep 25, 2020 • 4 Minute Read

Introduction

In web apps, browsers work with a SameSite policy that prevents a cross-domain XMLHttpRequest or Fetch request from being made. In simple terms, making a request from https://main.pluralsight.com to https://api.pluralsight.com is not allowed by default.

In this guide, you will learn about cross-origin resource sharing (CORS) and the role of the "Allow Access Control Origin" header. With the knowledge gained in this guide, you will find it easy to resolve issues relating to CORS.

Understanding CORS

Since making requests from different domains is not allowed by default, in this guide we will stick with https://main.pluralsight.com and https://api.pluralsight.com as domains A and B respectively. With the introduction of CORS, domains A and B can now share resources with each other without being blocked by the browser.

According to Wikipedia, "Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources on a web page to be requested from another domain outside the domain from which the first resource was served."

There are two methods used by the browser to verify the ability to share resources between two domains.

1. Simple Requests

In a simple request, the browser sends a GET request with an Origin header with the value of the requester's domain as shown below.

      Origin: https://main.pluralsight.com
    

The server then responds with an Access-Control-Allow-Origin header that includes a domain from which requests are allowed. This may also be a wildcard character denoted by an asterisk (*).

      Access-Control-Allow-Origin: http://main.pluralsight.com

										OR a wildcard

Access-Control-Allow-Origin: *
    

2. Preflighted Requests

In this method, the browser first sends a request with the OPTIONS method to the server—in this case, Server B, [https://api.pluralsight.com](https://api.pluralsight.com—to find out if it's allowed to send a request, hence the name preflight request.

Request

      OPTIONS /
Host: api.pluralsight.com
Origin: https://main.example.com
    

Response

      Access-Control-Allow-Origin: http://main.pluralsight.com
Access-Control-Allow-Methods: PUT, DELETE
    

After a response is received and server A (https://main.pluralsight.com) has the necessary permission to "talk" to server B (https://api.pluralsight.com), then the main request is sent to server A. (Kind of a bouncer at a party 😉).

CORS in Create-React-App

You understand CORS now, but how does this come together in Create-React-App? Well, as always, Create-React-App comes with a simple way to handle this: add a proxy field to your package.json file as shown below. In this case, a request is made from server A to server B (https://api.pluralsight.com).

      "proxy": "https://api.pluralsight.com:8000",
    

Any route that Create-React-App does not recognize will now automatically be proxied to the URL provided.

If you don't do this, you may end up with an error:

      Fetch API cannot load http://localhost:4000/api/todos. No 'Access-Control-Allow-Origin' 
header is present on the requested resource. Origin 'http://localhost:3000' is therefore 
not allowed access. If an opaque response serves your needs, set the request's mode to 
'no-cors' to fetch the resource with CORS disabled.
    

Note that Create-React-App will only proxy requests that do not have a content type of text/html.

Conclusion

And that's it! In this guide, you got to understand what cross-origin resource sharing is and how browsers handle cross-origin requests. To read more on how to handle this in Create-React-App, visit the Official Documentation to learn more.