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

https://github.com/flexsurfer/lein-re-frisk

A Leiningen plugin to start a web server for the remote debug re-frame applications using re-frisk.
https://github.com/flexsurfer/lein-re-frisk

electron electron-app lein lein-plugin leiningen re-frame re-frisk re-natal react-native tools

Last synced: 13 days ago
JSON representation

A Leiningen plugin to start a web server for the remote debug re-frame applications using re-frisk.

Awesome Lists containing this project

README

        

# lein-re-frisk

Leiningen plugin that starts a web server for the remote debugging re-frame applications (react native, electron, web) using [re-frisk-remote](https://github.com/flexsurfer/re-frisk-remote) library.

[](https://github.com/flexsurfer/re-frisk)

## Usage

[![Clojars](https://img.shields.io/clojars/v/lein-re-frisk.svg)](https://clojars.org/lein-re-frisk)

NOTE! for shadow-cljs RN projects you can use this libary: https://github.com/flexsurfer/re-frisk-rn

Add `[lein-re-frisk "0.5.10"]` into your global Leiningen config (`~/.lein/profiles.clj`) like so:

```cljs
{:user {:plugins [[lein-re-frisk "0.5.10"]]}}
```

or into the :plugins vector of your project.clj

```cljs
(defproject your-project "0.1.1"
{:plugins [[lein-re-frisk "0.5.10"]]})
```

Start a web server in the current directory on the default port (4567):

$ lein re-frisk

Or select a different port by supplying the port number on the command line:

$ lein re-frisk 8095

Run re-frame application with the [re-frisk-remote](https://github.com/flexsurfer/re-frisk-remote) library. Enjoy!