Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

express download file

app.get((req, res, next) => {
  res.download('/file/to/be/downloaded.ext');
  res.status(200);
});
 
PREVIOUS NEXT
Tagged: #express #download #file
ADD COMMENT
Topic
Name
6+2 =