Skip to content

Instantly share code, notes, and snippets.

@fiveisprime
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save fiveisprime/9816604b8444e6071ca6 to your computer and use it in GitHub Desktop.

Select an option

Save fiveisprime/9816604b8444e6071ca6 to your computer and use it in GitHub Desktop.
CORS
// This
app.all('*', function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
// Or this
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment