I have some clojurescript that I want to interop with some javascript libraries. In my clojurescript code I do some analysis and come up with a list of maps. something like
This works for me:
(defn clj->json [ds] (.stringify js/JSON (clj->js ds)))
usage:
(let [json (clj->json data-structure)] ;; do something with json )