'How to download pdf in express

In express I create pdf file with Pdfkit library and than I want do download this file, but have this error...

''' doc.pipe(fs.createWriteStream('public/' + 'zeleno-financiranje-' + file_id + '.pdf'));

var file = "public/" + "zeleno-financiranje-" + file_id + ".pdf";
res.download(file, 'download.pdf');

'''

enter image description here

Any ideas?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source