Skip to content

Instantly share code, notes, and snippets.

@rohanBagchi
Created January 15, 2019 13:02
Show Gist options
  • Save rohanBagchi/7c0901dcdb4840d5b7b2df253915a87a to your computer and use it in GitHub Desktop.
Save rohanBagchi/7c0901dcdb4840d5b7b2df253915a87a to your computer and use it in GitHub Desktop.
router.get('/download', function(req, res) {
res.set('Content-Disposition', 'attachment; filename=Some Fancy Data.xls')
res.set('Access-Control-Expose-Headers', 'Content-Disposition,X-Suggested-Filename')
res.json(downloadData);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment