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
import download from "downloadjs"; export const downloadFile = async (fileName) => { axios({ method: "get", url: `/api/v1/users/resume/${fileName}`, responseType: "blob", }).then(function (response) { download(response.data, fileName); }); };
it's work fine to me