This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-09-14
Channels
- # aleph (1)
- # aws-lambda (10)
- # beginners (161)
- # bitcoin (2)
- # boot (20)
- # cider (3)
- # clara (46)
- # cljs-dev (35)
- # cljsrn (9)
- # clojure (123)
- # clojure-boston (1)
- # clojure-colombia (1)
- # clojure-dusseldorf (3)
- # clojure-gamedev (2)
- # clojure-germany (2)
- # clojure-greece (1)
- # clojure-italy (7)
- # clojure-losangeles (3)
- # clojure-nl (2)
- # clojure-russia (15)
- # clojure-spec (1)
- # clojure-uk (7)
- # clojurescript (75)
- # community-development (5)
- # cursive (5)
- # datomic (25)
- # docs (3)
- # emacs (1)
- # fulcro (11)
- # graphql (131)
- # heroku (1)
- # jobs (1)
- # juxt (55)
- # lein-figwheel (2)
- # luminus (1)
- # off-topic (4)
- # om (8)
- # onyx (32)
- # pedestal (19)
- # re-frame (53)
- # reagent (11)
- # remote-jobs (1)
- # rum (12)
- # shadow-cljs (12)
- # spacemacs (53)
- # testing (2)
- # unrepl (18)
@roklenarcic Figwheel embeds it’s port (3449) in the hot reload code. Use port 3000. figwheel will connect its websocket to 3449 no matter what port your load from. Use 3449 for devcards and tests
I am not sure I understand having components in cljc files. Doesn't render function usually use a lot of CLJS specific things, like #js
reader and wrapped JS libraries for components (such as bootstrap)?
@roklenarcic: If it is in a cljc file then the idea is that it can also be for server side rendering, where indeed you do not have any CLJS specific things.
I thought the idea was that it was needed for server reads/mutations in fulcro to have access to queries
I think that is a wrong idea. Ordinarily the defui
components are not needed on the server.
@roklenarcic Using cljc is for server-side rendering.