Skip to content

Instantly share code, notes, and snippets.

@eiriklv
Created September 9, 2014 11:17
Show Gist options
  • Save eiriklv/74b1b544ff255f0f9ba4 to your computer and use it in GitHub Desktop.
Save eiriklv/74b1b544ff255f0f9ba4 to your computer and use it in GitHub Desktop.
Express allow CORS
module.exports.allowCORS = function(app) {
var allowCrossDomain = function(req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization');
if ('OPTIONS' == req.method) {
res.send(200);
} else {
next();
}
};
app.use(allowCrossDomain);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment