This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-10-18
Channels
- # announcements (18)
- # babashka (34)
- # beginners (47)
- # biff (1)
- # calva (99)
- # cider (1)
- # clojure (99)
- # clojure-austin (13)
- # clojure-australia (1)
- # clojure-dev (53)
- # clojure-europe (30)
- # clojure-nl (1)
- # clojure-norway (7)
- # clojure-spec (7)
- # clojure-uk (1)
- # clojurescript (50)
- # cursive (11)
- # datahike (20)
- # datomic (10)
- # fulcro (7)
- # graalvm (8)
- # gratitude (1)
- # introduce-yourself (7)
- # jackdaw (1)
- # joyride (1)
- # lambdaisland (7)
- # lsp (2)
- # malli (7)
- # nbb (1)
- # off-topic (1)
- # portal (24)
- # re-frame (8)
- # reagent (13)
- # reitit (7)
- # releases (2)
- # remote-jobs (8)
- # rewrite-clj (3)
- # sci (1)
- # scittle (21)
- # shadow-cljs (2)
- # testing (3)
- # tools-deps (22)
- # web-security (19)
I am wondering if reframe support server side rendering at all? Are there any resources I can look at about this?
There's little re-frame-specific in SSR, assuming you stick to good re-frame practices, like not calling dispatch
during a render.
So, it all comes down to SSR in Reagent, and there's plenty of materials that could be found in this Slack or elsewhere online - it' been discussed a lot.
Ok do you know of any specific examples/articles I can look at?
I'd have to use the same search myself. :) I just know that there's a lot of material out there. I'd recommend searching on Slack first, specifically in #reagent - Slack search input field allows you to limit search to a specific channel.
depending on what you're trying to achieve. i just made an example repo the other day https://github.com/valerauko/hoge/
re-frame itself works just fine with server-side rendering (react's rendertostring). what gets tricky is browser-specific stuff such as the window.location object or the lack of the document object on the server side. these can break most libraries (routing etc) that assume a browser