Posts

Showing posts with the label restify

Dose resitfy have the same function like “download” in express for downloading a file from server?

Dose resitfy have the same function like “download” in express for downloading a file from server? I want to create a nodejs server for uploading and downloading files. Many examples from google are created by using express library. so, Dose resitfy have the same function like "download" in express for the same functionality. In express: app.get('/download', function(req, res){ var file = __dirname + '/upload-folder/dramaticpenguin.MOV'; res.download(file); // Set disposition and send it. }); By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.