Skip to content

Instantly share code, notes, and snippets.

@binaryk
Created February 19, 2016 20:40
Show Gist options
  • Save binaryk/81754a382fea2be76856 to your computer and use it in GitHub Desktop.
Save binaryk/81754a382fea2be76856 to your computer and use it in GitHub Desktop.
app.use(function(req, res, next){
res.header('Access-Control-Allow-Origin','*');
res.header('Access-Control-Allow-Method','GET,PUT,DELETE,POST');
res.header('Access-Control-Allow-Headers','Content-Type');
next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment