This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-02-23
Channels
- # aws-lambda (1)
- # beginners (11)
- # boot (456)
- # cider (3)
- # cljsrn (7)
- # clojure (340)
- # clojure-berlin (6)
- # clojure-dev (207)
- # clojure-germany (12)
- # clojure-greece (3)
- # clojure-italy (3)
- # clojure-russia (12)
- # clojure-spec (42)
- # clojure-uk (29)
- # clojured (7)
- # clojurescript (125)
- # datascript (1)
- # datomic (47)
- # defnpodcast (4)
- # emacs (30)
- # events (7)
- # hoplon (13)
- # instaparse (64)
- # jobs (13)
- # jobs-discuss (1)
- # lein-figwheel (1)
- # leiningen (10)
- # luminus (1)
- # lumo (14)
- # off-topic (10)
- # om (16)
- # om-next (3)
- # onyx (1)
- # pedestal (3)
- # protorepl (5)
- # re-frame (17)
- # reagent (66)
- # ring (1)
- # ring-swagger (13)
- # spacemacs (12)
- # specter (4)
- # untangled (272)
- # vim (4)
- # yada (24)
Out of interest, what's the preferred choice between Sente, Chord and Websockets-async for clojure/clojurescript comms ?
@placeboza don't rule out AJAX too fast 🙂
@placeboza I use plain websockets for it in my pet project
my choice: the simplest approach that will get the job done. What are your requirements? As mentioned, bare HTTP calls are going to work pretty well if you don't need two-way comms.
+1 I introduce websockets (sente in clj case) only if I need to push data from the server to the client.
@placeboza I have some clojure/clojurescript communication in my pet project, but just use plain websockets