let archiverModulePromise = null; async function createZipArchive(options = {}) { archiverModulePromise ||= import('archiver'); const { ZipArchive } = await archiverModulePromise; return new ZipArchive(options); } module.exports = { createZipArchive };