These are declarations of the remote mutations that are callable on the Fulcro Inspect Dev tool. Internal use.
They are declared in the Fulcro project so the internals can be connected to the Inspect Devtool without having the dev tool be a release build requirement.
These are declarations of the remote mutations that are callable on the Fulcro Inspect Dev tool. Internal use. They are declared in the Fulcro project so the internals can be connected to the Inspect Devtool without having the dev tool be a release build requirement.
No vars found in this namespace.
A flight-recorder tool for AI agents and developers working at the REPL.
Captures Fulcro events (transactions, network activity, state changes, UISM transitions, statechart transitions) into a queryable log. Optimized for the workflow: clear -> do something -> inspect what happened.
Usage:
(require '[com.fulcrologic.fulcro.inspect.repl-tool :as rt])
(rt/install! app)
(rt/clear!)
;; ... do something in the app ...
(rt/digest) ;; structured summary of what happened
(rt/tx-log) ;; just transactions
Events are stored in the app's runtime-atom and bounded to a configurable max size.
A default-app atom allows calling functions without passing app every time.
A flight-recorder tool for AI agents and developers working at the REPL. Captures Fulcro events (transactions, network activity, state changes, UISM transitions, statechart transitions) into a queryable log. Optimized for the workflow: clear -> do something -> inspect what happened. Usage: ```clojure (require '[com.fulcrologic.fulcro.inspect.repl-tool :as rt]) (rt/install! app) (rt/clear!) ;; ... do something in the app ... (rt/digest) ;; structured summary of what happened (rt/tx-log) ;; just transactions ``` Events are stored in the app's runtime-atom and bounded to a configurable max size. A default-app atom allows calling functions without passing `app` every time.
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |