Extensible Data Notation, edn, is a subset of Clojure's data notation intended to be used as a data exchange format.

learn more… | top users | synonyms

2
votes
2answers
192 views

How can I pass edn to clojurescript from clojure without making ajax request (i.e. via hiccup-generated page)

I'm developing RIA with clojure and clojurescript. Backend uses hiccup to generate a resulting html, like (html5 [:head (include-js "/js/my-cljs-generated.js")] [:body ... ]) How can I pass ...
2
votes
2answers
383 views

How to use clojure.edn/read to get a sequence of objects in a file?

Clojure 1.5 introduced clojure.edn, which includes a read function that requires a PushbackReader. If I want to read the first five objects, I can do: (with-open [infile (java.io.PushbackReader. ...