Skip to content

Instantly share code, notes, and snippets.

@cfjedimaster
Created April 25, 2024 15:54
Show Gist options
  • Save cfjedimaster/a47985b3deb37f42bdf27b4a5d8ccb8b to your computer and use it in GitHub Desktop.
Save cfjedimaster/a47985b3deb37f42bdf27b4a5d8ccb8b to your computer and use it in GitHub Desktop.
async function downloadFile(url, filePath) {
let res = await fetch(url);
const body = Readable.fromWeb(res.body);
const download_write_stream = fs.createWriteStream(filePath);
return await finished(body.pipe(download_write_stream));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment