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

Chapter 7. CORS in Node.js

Node.js is a cross-platform JavaScript runtime environment that executes JavaScript code at the server-side. This enables a unified language across the web application development. JavaScript becomes the unified language that runs both on the client-side and server-side.

In this chapter, we will learn about the following topics:

  • Node.js as a JavaScript platform for developing server-side web applications

  • Node.js can provide the web server for other frameworks, including Express.js, AngularJS, Backbone.js, Ember.js, and others

  • Other JavaScript frameworks, such as ReactJS, Ember.js, and Socket.IO, may also use Node.js as the web server

  • Isomorphic JavaScript can add server-side functionality for client-side frameworks

  • JavaScript frameworks are evolving rapidly; this chapter reviews some of the current techniques and specific syntax for some of these frameworks, so make sure that you check the documentation of the project to discover the latest techniques

  • Through understanding...