Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. I think I can provide an inaccurate but short version of the relationships among them.
  2.  
  3. At first Clojure used Maven for building.
  4. Maven is boring, people made Leiningen, configuring with maps, and the plugin lein-cljsbuild can build ClojureScript.
  5. Leiningen contains only configurations, no logics. People want to compose tasks, so they made Boot, and provided boot-cljs and boot-reload for ClojureScript.
  6. Webpack is cool with hot module replacement, we got lein-figwheel for that.
  7. All tools above relies on JVM heavily, in order to run ClojureScript on devices without JVM, like iOS, Planck was created based on self-hosted ClojureScript and JavaScriptCode, which is a ClojureScript runtime.
  8. Planck does not support modules from npm, then Lumo was created to make full use of V8 engine.
  9. We still feel the toolchain is too heavy for developers from JavaScript ecosystem, shadow-cljs was refactored to be more friendly, supporting npm modules, relies on JVM but in the background, also with some features from Webpack.
  10. in the meantime, offciial cljs compiler is still improving…
  11.  
  12. The situation today is more history than design.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement