This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-19
Channels
- # announcements (12)
- # aws (17)
- # babashka (6)
- # beginners (40)
- # cider (14)
- # cljs-dev (14)
- # cljsrn (8)
- # clojure (110)
- # clojure-europe (46)
- # clojure-italy (1)
- # clojure-nl (4)
- # clojure-spec (14)
- # clojure-sweden (3)
- # clojure-uk (29)
- # clojurescript (52)
- # conjure (68)
- # cursive (33)
- # datomic (9)
- # figwheel-main (11)
- # fulcro (97)
- # ghostwheel (1)
- # graalvm (2)
- # helix (53)
- # hoplon (13)
- # joker (6)
- # kaocha (1)
- # leiningen (2)
- # meander (28)
- # mid-cities-meetup (1)
- # observability (1)
- # off-topic (112)
- # pathom (6)
- # pedestal (3)
- # re-frame (16)
- # reagent (16)
- # reitit (2)
- # shadow-cljs (27)
- # spacemacs (2)
- # sql (26)
- # testing (3)
- # utah-clojurians (3)
- # vim (2)
- # xtdb (32)
I've been working with edn in golang and wondering about several things. if there is golang based webserver one could combine golang in backend with clojurescript in frontend. I don't know if it makes sense but could parts of joker be used instead of this encoder eg https://github.com/go-edn/edn still trying to grog the internals of clojure datastructures, but can't say I made much headway. probably will need a use-case to be able to afford more time. I think transport of edn data in golang to javascript could have a lot of benefits over json
There's also this: https://github.com/russolsen/transit
Joker doesn't actually have a proper EDN parser. It can only parse Clojure, which is not exactly the same as EDN. I think you'd be better off using a specialized library.
thanks. I assume it would do much for what joker is aimed at to have that separate? since clojure is superset of EDN? a big part of clojure breakthrough was JVM, but it seems landscape now is very different i.e. we have golang, WASM, etc
@U04V15CAJ many thanks for that link