i want download a pdf file with axios and save on disk (server side) with fs.writeFile, i have tried:
axios
fs.writeFile
axios.get(\'https://xxx/my.pd
You can simply use response.data.pipe and fs.createWriteStream to pipe response to file
response.data.pipe
fs.createWriteStream
axios({ method: "get", url: "https://xxx/my.pdf", responseType: "stream" }).then(function (response) { response.data.pipe(fs.createWriteStream("/temp/my.pdf")); });