Frequently Asked Questions
Everything you need to know about security, cookies, and data
Is my JSON data sent to any server?
How does the encryption process for sharing work?
When you click the Share button, your JSON payload is encrypted directly in your browser using the industry-standard AES-GCM (256-bit) algorithm.
The decryption key is generated locally and appended as a URL fragment (hash) after the `#` character. Because browser URL hash fragments are never transmitted to our servers (or any database), we host a zero-knowledge repository. Only the people you share the complete URL link with can decrypt and read the contents.
Do you use cookies?
Yes, but we only use essential "cookies" in the form of local browser persistence (localStorage and sessionStorage).
These storage systems save your active JSON, format settings, editor themes, and viewport configurations locally. Without these local persistence cookies, formatting and parsing would be impossible, as your configuration state would reset on every single interaction or refresh. We never use cookies for marketing or tracking.