1. Converting Clojure Config to JSON
Backend DeveloperBackground
A developer needs to share a configuration map defined in a Clojure project with a React frontend team.
Problem
The frontend application cannot parse the native EDN format used in the backend.
How to use
Paste the EDN map into the input area to generate the corresponding JSON object.
{:app-name "Dashboard" :version 1.2 :features [:auth :logging]}Outcome
The tool outputs a valid JSON object: {"app-name": "Dashboard", "version": 1.2, "features": ["auth", "logging"]}.