I'm using express to create a link where users download a file. Once click the link, the file downloads to their computer.
For that I'm using:
res.download('filename.pdf');
Easy.
Is is possible to either redirect them to another page or send an html page along as well? Not sure web servers can even do this.