Ideal for extracting a couple of files from a massive ZIP archive without downloading it.
Usage:
const url = "<URL to a zip archive>";
const reader = await RemoteReader.open(url);
const zip = await yauzl.fromReader(reader, reader.totalSize);
for await (const entry of zip) {