ยท 5 days agoยท Dev.to
Unlocking PowerPoint Secrets in the Browser: One File, Multiple Formats
Most file converters upload your files to a server. I wanted to see how far I could get without one. Turns out: all the way. import JSZip from 'jszip'; import { Document, Packer, Paragraph } from 'docx'; // 1. Crack open the .pptx (it's a zip) const zip = await JSZip.loadAsync(file); // 2. Walk each
#cloud-computing#file-conversion#javascript#browser-based