2017-03-18 16:15 GMT+01:00 Jennifer Parsons <[email protected]>: > No such namespace: clojure.edn, could not locate clojure/edn.cljs, > clojure/edn.cljc, or Closure namespace “
The error message indicates, that a ClojureScript file tries to load clojure.edn, when that namespace is Clojure only. See http://stackoverflow.com/questions/36208287/stringify-parse-edn-in-clojure-clojurescript for a solution. Also, consider using transit, as that will yield faster parsing / serialization times for ClojureScript. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
