Skip to content

Instantly share code, notes, and snippets.

@Unitech
Created July 8, 2014 14:44
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save Unitech/663fc37152e83ff86415 to your computer and use it in GitHub Desktop.
Save Unitech/663fc37152e83ff86415 to your computer and use it in GitHub Desktop.
CORS
app.all('*', function (req, res, next) {
res.header("Access-Control-Allow-Origin", req.headers.origin);
res.header("Access-Control-Allow-Credentials", true);
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
res.header("Access-Control-Allow-Headers", "X-Requested-With, Content-Type, Authorization, Content-Length");
if (req.method == 'OPTIONS') {
return res.send(200);
}
return next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment