This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-08-29
Channels
- # babashka (54)
- # beginners (24)
- # biff (23)
- # calva (14)
- # catalyst (4)
- # cider (20)
- # clj-kondo (17)
- # clojure (65)
- # clojure-europe (14)
- # clojure-norway (177)
- # clojure-uk (1)
- # clojurescript (11)
- # core-typed (4)
- # cursive (10)
- # datomic (39)
- # emacs (21)
- # gratitude (33)
- # honeysql (8)
- # hyperfiddle (57)
- # introduce-yourself (7)
- # jobs (5)
- # leiningen (17)
- # lsp (6)
- # meander (3)
- # missionary (5)
- # pathom (2)
- # polylith (4)
- # re-frame (7)
- # releases (2)
is there anything native to clojurescript to read-str to EDN and track line numbers, or do I need to reach to rewrite-clj?
Hi, are there good CLJS tools which print the stack trace alongside the concrete value being passed to the functions?
I have a function which receives 1 argument, but cljs keeps trying to invoke the argument as function
I have an event
(def event-default {:status false :event {:type nil :edata nil}})
(defonce !event (atom event-default))
I set the event type and event data when I emit the function. And I use the following event system to dispatch
(e/defn event-system []
(let [event (e/watch !event)]
(when (= (:status event) true)
(dispatch-event (:event event))
(reset! !event event-default)
)))
looks like an electric issue, exploring in #hyperfiddle https://clojurians.slack.com/archives/C7Q9GSHFV/p1693321123284739
✅ 2