This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-03-19
Channels
- # announcements (6)
- # aws (10)
- # beginners (73)
- # bristol-clojurians (2)
- # calva (9)
- # cider (25)
- # clj-kondo (7)
- # clojure (160)
- # clojure-dev (2)
- # clojure-europe (63)
- # clojure-italy (7)
- # clojure-nl (10)
- # clojure-uk (76)
- # clojuredesign-podcast (6)
- # clojurescript (63)
- # cursive (6)
- # data-science (3)
- # datomic (26)
- # duct (59)
- # emacs (1)
- # fulcro (12)
- # graalvm (17)
- # hoplon (23)
- # jobs-discuss (2)
- # kaocha (6)
- # meander (7)
- # off-topic (3)
- # pathom (2)
- # rdf (68)
- # re-frame (12)
- # reagent (20)
- # reitit (5)
- # ring (3)
- # ring-swagger (1)
- # shadow-cljs (14)
- # spacemacs (10)
- # sql (3)
- # tools-deps (30)
- # yada (9)
Does anyone have a link to a complete, working example of server-side rendering? 🙏 I don't quite understand what to do, and all of the examples I run across seem to require Fulcro v2
i recently implemented serverside rendering in a closed source project with fulcro3
AFAIK the setup was the same as v2
Hmmm, ok. Thanks @U09FEH8GN. I'll take a closer look. Anything I should be aware of? Lessons learned?
unless you really need to
we needed it to build PDF reports quickly on the server by using a library to convert HTML to PDF
IMO it’s a neat parlor trick, but very often there are other feature users want more than super fast load times
You start using a js lib like material-components and you can forget your server side rendering... :-(
Here is another example repo: https://github.com/MrEbbinghaus/Todoish/blob/dev/src/main/todoish/server_components/middleware.clj
Fantastic! Thanks @U4VT24ZM3!