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.
- Host: GitHub
- URL: https://github.com/flexsurfer/lein-re-frisk
- Owner: flexsurfer
- Created: 2017-03-06T18:45:53.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-09T06:04:59.000Z (about 1 year ago)
- Last Synced: 2025-05-08T22:44:19.424Z (13 days ago)
- Topics: electron, electron-app, lein, lein-plugin, leiningen, re-frame, re-frisk, re-natal, react-native, tools
- Language: HTML
- Homepage:
- Size: 1.85 MB
- Stars: 7
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
[](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!