Convert a .env (dotenv) KEY=VALUE file to a YAML mapping instantly in your browser. Handles comments and quoted values. Swap to YAML→ENV in one click. Client-side.
The ENV to YAML converter parses dotenv `KEY=VALUE` files — ignoring blank lines and `#` comments — and writes each variable as a flat YAML mapping entry using js-yaml. Both editors are live — swap to YAML→ENV with one click. The YAML output has an interactive tree view.
QAre all values treated as strings?
Yes — dotenv values are strings. The output YAML mapping preserves them as quoted strings to avoid unintended type interpretation.
QIs my data sent to a server?
No. All conversion runs in a Web Worker inside your browser.