Skip to content

Instantly share code, notes, and snippets.

@nurfarazi
Created December 3, 2015 11:33
Show Gist options
  • Save nurfarazi/3ca1115ec42fd9935512 to your computer and use it in GitHub Desktop.
Save nurfarazi/3ca1115ec42fd9935512 to your computer and use it in GitHub Desktop.
app.use(function(req, res, next) {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST');
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type, Authorization');
next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment