This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-05-24
Channels
- # announcements (27)
- # beginners (105)
- # calva (10)
- # clojure (2)
- # clojure-europe (10)
- # clojure-nl (1)
- # clojure-norway (11)
- # clojure-sweden (5)
- # clojure-uk (20)
- # clojurescript (7)
- # code-reviews (4)
- # community-development (2)
- # cursive (10)
- # data-science (2)
- # emacs (20)
- # events (1)
- # fulcro (1)
- # gratitude (1)
- # guix (1)
- # hyperfiddle (4)
- # off-topic (4)
- # overtone (24)
- # rdf (2)
- # releases (4)
- # ring (4)
- # shadow-cljs (26)
- # squint (76)
- # yamlscript (29)
Whats the equivalent of clojure.reflect for clojurescript? I can console log a js object and look at its properties and methods, but is there a way to get that information in my repl?
Object.keys
and all its friends.
The experience will most likely be miserable compared to viewing an object via a JS console or some other tool that knows about JS objects and how they work.
👍 1
What do you use? Js console?
This may not be what you're asking for but binaryage/cljs-devtools let's you console.log ClojureScript objects and get them in a nicely represented collapsible tree like a JS object.
👍 1