Author: Ajay Mahiwal

Do want to make some HTTP request to some enpoint but not able to make because of Browser feature, which is called CORS. CORS, or Cross-Origin Resource Sharing, is a security feature implemented by web browsers to control how resources on a web page can be requested from another domain outside the domain from which the resource originated. Example: My domain is localhost:3000 and Other domain is api.example.com . So now if i want to make a request from my local server to other server which have different domain. Then a flow of CORS request will started. Flow of CORS…

Read More