This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-07-26
Channels
- # aws-lambda (15)
- # babashka (7)
- # beginners (124)
- # calva (7)
- # cider (19)
- # clj-kondo (26)
- # clojure (261)
- # clojure-australia (3)
- # clojure-dev (10)
- # clojure-europe (45)
- # clojure-nl (4)
- # clojure-uk (6)
- # clojurescript (10)
- # datomic (7)
- # depstar (7)
- # emacs (11)
- # fulcro (41)
- # graalvm (48)
- # helix (1)
- # honeysql (17)
- # inf-clojure (7)
- # introduce-yourself (3)
- # jackdaw (1)
- # lsp (36)
- # malli (2)
- # meander (2)
- # membrane (1)
- # missionary (11)
- # off-topic (17)
- # pathom (83)
- # polylith (15)
- # re-frame (31)
- # reagent (42)
- # sci (35)
- # shadow-cljs (13)
- # spacemacs (13)
- # sql (19)
- # timbre (1)
- # tools-deps (77)
I run “fire up clojurescript browser repl”. Behind the theme, what is transpiling the cljs code to js, shadow or figwheel, or the vanilla cljs-build? And how does this happen?
I assume you mean the cljs getting started repl? I’m not too sure what is behind it for the “Welcome” app (though I don’t see any evidence of shadow, so my guess is vanilla), but ClojureScript is the compiler that compiles the cljs to js. https://clojurescript.org/
If you look at the
sources
tab under the element inspector, you can even see the js that gets returned, though it’s far from human readable.
The REPL is started like on https://clojurescript.org/ , the minimal cljs project.
I see. You were referring to this: https://clojurescript.org/guides/quick-start