Getting Started
Overview
Eazip turns browser files, blobs, and remote URLs into one ZIP download — in the browser by default, in Eazip Cloud when jobs get big.
import { createZip } from '@eazip/core';
const result = await createZip({
files: [
'https://cdn.example.com/report.pdf',
'https://cdn.example.com/photos.png',
],
zipName: 'export.zip',
});
result.download();Start building
Pick where you're calling Eazip from:
React
@eazip/react provides useEazip() and a drop-in tray for progress, retries, and downloads.
JavaScript
@eazip/core is the framework-agnostic ZIP engine for any browser application.
Server (HTTP API)
Create ZIP jobs from your backend with a zk_ key — no frontend SDK involved.