Book Image

CORS Essentials

By : Rajesh Gunasundaram
Book Image

CORS Essentials

By: Rajesh Gunasundaram

Overview of this book

This book explains how to use CORS, including specific implementations for platforms such as Drupal, WordPress, IIS Server, ASP.NET, JBoss, Windows Azure, and Salesforce, as well as how to use CORS in the Cloud on Amazon AWS, YouTube, Mulesoft, and others. It examines limitations, security risks, and alternatives to CORS. It explores the W3C Specification and major developer documentation sources about CORS. It attempts to predict what kinds of extension to the CORS specification, or completely new techniques, will come in the future to address the limitations of CORS Web developers will learn how to share code and assets across domains with CORS. They will learn a variety of techniques that are rather similar in their method and syntax. The book is organized by similar types of framework and application, so it can be used as a reference. Developers will learn about special cases, such as when a proxy is necessary. And they will learn about some alternative techniques that achieve similar goals, and when they may be preferable to using CORS
Table of Contents (15 chapters)
CORS Essentials
Credits
About the Authors
www.PacktPub.com
Customer Feedback
Preface
Index

CORS in AngularJS


AngularJS is designed to be a client-side application, meaning it renders in the client browser and does not run on the server. Therefore, you can't make a CORS request to an AngularJS frontend. CORS in AngularJS creates requests from the application for resources on other domains, typically with GET.

If your AngularJS application is connected to a JavaScript server, then you may be able to use CORS in the server application before sending the data to AngularJS. How you implement CORS depends on the server framework.

Isomorphic JavaScript runs the same codebase on the server and in the client browser. The JavaScript server is typically built with Node.js. In an isomorphic JavaScript application with AngularJS on the frontend, CORS requests are handled by the JavaScript server.

Enabling CORS in AngularJS

To enable CORS in AngularJS, we will create a service, which we will call appName. Configure $httpProvider.defaults with useXDomain so that the cross-domain requests are also...