https://github.com/flexsurfer/re-frisk-remote
re-frisk remote library for debugging re-frame applications using leiningen re-frisk plugin
https://github.com/flexsurfer/re-frisk-remote
electron electron-app re-frame re-frisk re-natal react-native
Last synced: 3 months ago
JSON representation
re-frisk remote library for debugging re-frame applications using leiningen re-frisk plugin
- Host: GitHub
- URL: https://github.com/flexsurfer/re-frisk-remote
- Owner: flexsurfer
- Created: 2017-03-06T19:49:09.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-04-06T15:04:10.000Z (about 5 years ago)
- Last Synced: 2025-05-06T10:56:56.274Z (about 1 year ago)
- Topics: electron, electron-app, re-frame, re-frisk, re-natal, react-native
- Language: Clojure
- Size: 43.9 KB
- Stars: 18
- Watchers: 2
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# THIS REPO ISN'T MAINTANIED ANYMORE you can find re-frisk-remote here https://github.com/flexsurfer/re-frisk
# re-frisk remote library
[re-frisk](https://github.com/flexsurfer/re-frisk) remote library for debugging re-frame applications (react native, electron, web) using leiningen re-frisk [plugin](https://github.com/flexsurfer/lein-re-frisk)
[
](https://github.com/flexsurfer/re-frisk)
## Usage
[](https://clojars.org/re-frisk-remote)
NOTE! for shadow-cljs RN projects you can use this libary: https://github.com/flexsurfer/re-frisk-rn
Add `[re-frisk-remote "0.5.10"]` to the dev `:dependencies` in your project.clj
run re-frisk using `enable-re-frisk-remote!` function on the localhost and default port (4567)
```cljs
(:require [re-frisk-remote.core :refer [enable-re-frisk-remote!]])
(enable-re-frisk-remote!)
```
Or select a different host and port by supplying the host and port number:
```cljs
(enable-re-frisk-remote! {:host "192.168.1.1:8095"})
```
You could also provide options `:enable-re-frisk? false` or `:enable-re-frame-10x? true` to enable/disable sending traces for respective component while re-frame-10x is disabled by default.
Run re-frisk remote server using leiningen re-frisk [plugin](https://github.com/flexsurfer/lein-re-frisk)
`$ lein re-frisk`
Run an application,
Enjoy!