Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/roman01la/cljs-react-devtools
React DevTools for ClojureScript wrappers
https://github.com/roman01la/cljs-react-devtools
clojurescript devtools react
Last synced: 2 months ago
JSON representation
React DevTools for ClojureScript wrappers
- Host: GitHub
- URL: https://github.com/roman01la/cljs-react-devtools
- Owner: roman01la
- License: epl-2.0
- Created: 2023-12-09T18:25:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-10T12:45:37.000Z (5 months ago)
- Last Synced: 2024-08-11T12:58:57.312Z (5 months ago)
- Topics: clojurescript, devtools, react
- Language: Clojure
- Homepage: https://roman01la.github.io/cljs-react-devtools/
- Size: 10.5 MB
- Stars: 30
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# React DevTools for ClojureScript wrappers
> ⚠️ _EXPERIMENTAL_
https://github.com/roman01la/cljs-react-devtools/assets/1355501/c3bd8d6d-1127-4459-89ac-3b551d47da36
[*Live demo*](https://roman01la.github.io/cljs-react-devtools/)
## Features
- React components & DOM nodes tree
- Visual picking and highlighting
- Props, hooks, Reagent reactions and re-frame subscriptions inspector
- Update reactions and subscriptions from the inspector
- Click on a value in the inspector to log it to the console
- Press a shortcut to toggle DevTools visibility
- Bottom, left, right docking and undocking into a separate windowSupported React wrappers:
- UIx
- Reagent## Setup
1. Install the library via Git deps
```clj
{:deps {roman01la/cljs-react-devtools {:git/url "https://github.com/roman01la/cljs-react-devtools.git"
:sha "{{COMMIT SHA}}"}}}
```
2. Initialize DevTools
```clojure
(cljs-react-devtools.core/init!
{:root (js/document.getElementById "root")
:shortcut "Control-Shift-Meta-R"}) ;; toggles DevTools visibility
```## Run example in this repo
1. Install NPM deps
2. Run `clojure -A:examples -M -m shadow.cljs.devtools.cli watch examples`
3. Open `http://localhost:3000/`[_Support development of the project via GitHub Sponsors program_](https://github.com/sponsors/roman01la)