An open API service indexing awesome lists of open source software.

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

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

[![Clojars](https://img.shields.io/clojars/v/re-frisk-remote.svg)](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!