NodeJS
[Express] express 서버로부터 파일 다운로드
kyeongjun-dev
2021. 6. 4. 14:20
https://stackoverflow.com/questions/7288814/download-a-file-from-nodejs-server-using-express
Download a file from NodeJS Server using Express
How can I download a file that is in my server to my machine accessing a page in a nodeJS server? I'm using the ExpressJS and I've been trying this: app.get('/download', function(req, res){ va...
stackoverflow.com
res.download(file)