This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-04-06
Channels
- # announcements (18)
- # asami (14)
- # aws (5)
- # babashka (58)
- # beginners (32)
- # calva (12)
- # cider (29)
- # clj-kondo (8)
- # cljfx (8)
- # cljs-dev (4)
- # clojure (101)
- # clojure-europe (54)
- # clojure-germany (5)
- # clojure-nl (8)
- # clojure-serbia (8)
- # clojure-spec (12)
- # clojure-uk (8)
- # clojurescript (24)
- # cursive (3)
- # datomic (17)
- # docs (2)
- # etaoin (12)
- # events (1)
- # fulcro (1)
- # google-cloud (2)
- # jobs (1)
- # jobs-discuss (6)
- # lsp (65)
- # luminus (2)
- # malli (10)
- # meander (4)
- # nrepl (1)
- # off-topic (112)
- # onyx (2)
- # pathom (6)
- # polylith (14)
- # re-frame (9)
- # reagent (36)
- # reitit (13)
- # releases (2)
- # remote-jobs (5)
- # rewrite-clj (12)
- # shadow-cljs (70)
- # specter (2)
- # startup-in-a-month (1)
- # xtdb (14)
I'm supposed to implement a code editor (single file for now) in javafx, currently I'm trying to use a WebView with codemirror. I'm wondering if it seems like a good option to you or if I should try something else first.
Sounds fun! I would use monaco (that’s used in vs code) — https://github.com/Microsoft/monaco-editor — but I don’t know much about codemirror
Is there any examples out there of a minimal cljfx project with clojurescript webviews ? Does it seems to be a bad idea for some reasons ?
Maybe this one can help you: https://github.com/cljfx/cljfx/blob/master/examples/e37_web_view_local_content.clj
Or this one: https://github.com/cljfx/cljfx/blob/master/examples/e39_web_view_extensions.clj
Thank you @UHKJRNXJP, I am aware of those examples, I was thinking of a project with the full clojurescript integration, compiling, hot reloading etc...