I am using express.js
I have a string "Hello world!"
I want a user to click on
<a href=/download>Download</a>
The user should get Hello.txt download with the text in it, NOT open a tab with the text.
I have looked around for ways to achieve this, I am guessing it has something to do with creating readstreams from buffer and piping to response, but I most of the examples dealt with reading actual files from disk, I don't want to read from disk, i just want to respond with a file created from a string.
Thanks!