Posts by Bruno Costa • 9 points
2 posts
-
1
votes1
answer24
viewsA: Equivalent of res.download express in restify
I found the solution. that would be: server.get(`/download`, (req, res) => { const path = `${process.cwd()}/apk/apkName.apk`; res.setHeader('Content-type',…
-
-3
votes1
answer24
viewsQ: Equivalent of res.download express in restify
I would like to send a file to the browser to download In express I do so: app.get('/apk', (req, res) => { res.contentType('application/vnd.android.package-archive');…