Show HN: Extracting React apps from Figma Make's undocumented binary format
Posted by albertsikkema 1 day ago
Comments
Comment by albertsikkema 1 day ago
Figma's API returns 400 for .make files, so I dug into the binary. Turns out it's a ZIP with a custom format: Deflate for the schema chunk, Zstandard for the data, then Kiwi binary decoding. Scripts on GitHub if useful: https://github.com/albertsikkema/figma-make-extractor
Comment by vednig 1 day ago
I once reverse engineered the Figma .fig file they have utilised quite good compression and data storage techniques for a tech company that uses AWS
Comment by albertsikkema 1 day ago
That is a funny observation! You are right, that is strange.