aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/github/download_file.ts
blob: f40750be905f6a3ea528657fc274b04e174f6ad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import fetch from "node-fetch";
import { throttle } from "throttle-debounce";
import * as fs from "fs";

export async function downloadFile(
    url: string,
    destFilePath: fs.PathLike,
    onProgress: (readBytes: number, totalBytes: number) => void
): Promise<void> {
    onProgress = throttle(100, /* noTrailing: */ true, onProgress);

    const response = await fetch(url);

    const totalBytes = Number(response.headers.get('content-length'));
    let readBytes = 0;

    return new Promise<void>((resolve, reject) => response.body
        .on("data", (chunk: Buffer) => {
            readBytes += chunk.length;
            onProgress(readBytes, totalBytes);
        })
        .on("end", resolve)
        .on("error", reject)
        .pipe(fs.createWriteStream(destFilePath))
    );
}