Recipes
Recipe - Server Jobs
Generate exports in background workers safely.
Use mode: "buffer" in queue workers and upload the resulting binary to object storage.
import { exportExcel } from "react-xel";
const buffer = exportExcel({
fileName: "daily-report.xlsx",
rows: [{ id: 1, total: 42 }],
mode: "buffer"
});