Liking cljdoc? Tell your friends :D
All platforms.

koine.json

JSON for dual-host Clojure.

ENCODE is pure portable Clojure — deliberately NOT delegated to a host library. Measured on 2026-07-27, Go's encoding/json and JVM clojure.data.json disagree on 4 of 6 basic payloads (key order, HTML escaping, float formatting, unicode escaping). Controlling those three choices IS the whole encoder, so we own it and both hosts agree by construction.

DECODE is also pure portable Clojure. Delegating it looked free (parsing has no formatting choices to disagree about) until you count the cost: one parser per host to keep in agreement, and cljgo's is a private builtin that is not reachable at all.

JSON for dual-host Clojure.

ENCODE is pure portable Clojure — deliberately NOT delegated to a host
library. Measured on 2026-07-27, Go's `encoding/json` and JVM
`clojure.data.json` disagree on 4 of 6 basic payloads (key order, HTML
escaping, float formatting, unicode escaping). Controlling those three
choices IS the whole encoder, so we own it and both hosts agree by
construction.

DECODE is also pure portable Clojure. Delegating it looked free (parsing has
no formatting choices to disagree about) until you count the cost: one parser
per host to keep in agreement, and cljgo's is a private builtin that is not
reachable at all.
raw docstring

read-strclj/s

(read-str s)
(read-str s {:keys [key-fn] :or {key-fn keyword}})

Parse a JSON string into Clojure data. Object keys become keywords unless :key-fn is supplied (pass str to keep them as strings).

Parse a JSON string into Clojure data. Object keys become keywords unless
`:key-fn` is supplied (pass `str` to keep them as strings).
sourceraw docstring

write-strclj/s

(write-str x)

Encode Clojure data as a JSON string. Object keys are sorted; non-ASCII is emitted literally. Deterministic and identical on every host.

Encode Clojure data as a JSON string. Object keys are sorted; non-ASCII is
emitted literally. Deterministic and identical on every host.
sourceraw docstring

cljdoc builds & hosts documentation for Clojure/Script libraries

Keyboard shortcuts
Ctrl+kJump to recent docs
Move to previous article
Move to next article
Ctrl+/Jump to the search field
× close