Skip to main content
Version: 3.11

Download a file with Node.js streams

For larger files, it is more efficient to use Node.js streams to download and transfer the files. This example demonstrates how to download files using streams.

The script uses the FileDownload crawler class to download files with streams, log the progress, and store the data in the key-value store. In local configuration, the data will be stored as files in ./storage/key_value_stores/default.

Run on
import { pipeline, Transform } from 'stream';

import { FileDownload, type Log } from 'crawlee';

// A sample Transform stream logging the download progress.
function createProgressTracker({ url, log, totalBytes }: { url: URL; log: Log; totalBytes: number }) {
let downloadedBytes = 0;

return new Transform({
transform(chunk, _, callback) {
if (downloadedBytes % 1e6 > (downloadedBytes + chunk.length) % 1e6) {
log.info(
`Downloaded ${downloadedBytes / 1e6} MB (${Math.floor((downloadedBytes / totalBytes) * 100)}%) for ${url}.`,
);
}
downloadedBytes += chunk.length;

this.push(chunk);
callback();
},
});
}

// Create a FileDownload - a custom crawler instance that will download files from URLs.
const crawler = new FileDownload({
async streamHandler({ stream, request, log, getKeyValueStore }) {
const url = new URL(request.url);

log.info(`Downloading ${url} to ${url.pathname.replace(/\//g, '_')}...`);

await new Promise<void>((resolve, reject) => {
// With the 'response' event, we have received the headers of the response.
stream.on('response', async (response) => {
const kvs = await getKeyValueStore();
await kvs.setValue(
url.pathname.replace(/\//g, '_'),
pipeline(
stream,
createProgressTracker({ url, log, totalBytes: Number(response.headers['content-length']) }),
(error) => {
if (error) reject(error);
},
),
{ contentType: response.headers['content-type'] },
);

log.info(`Downloaded ${url} to ${url.pathname.replace(/\//g, '_')}.`);

resolve();
});
});
},
});

// The initial list of URLs to crawl. Here we use just a few hard-coded URLs.
await crawler.addRequests([
'https://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_320x180.mp4',
'https://download.blender.org/peach/bigbuckbunny_movies/BigBuckBunny_640x360.m4v',
]);

// Run the downloader and wait for it to finish.
await crawler.run();