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

https://github.com/kennethkalmer/re-frame-semantic-ui-react-github-tabs

Passing around components with reagent and Semantic UI- sample code
https://github.com/kennethkalmer/re-frame-semantic-ui-react-github-tabs

clojurescript re-frame reagent semantic-ui-react

Last synced: 3 months ago
JSON representation

Passing around components with reagent and Semantic UI- sample code

Awesome Lists containing this project

README

        

# github-repo-widget

A [re-frame](https://github.com/Day8/re-frame) application designed to ... well, that part is up to you.

## Development Mode

### Start Cider from Emacs:

Put this in your Emacs config file:

```
(setq cider-cljs-lein-repl
"(do (require 'figwheel-sidecar.repl-api)
(figwheel-sidecar.repl-api/start-figwheel!)
(figwheel-sidecar.repl-api/cljs-repl))")
```

Navigate to a clojurescript file and start a figwheel REPL with `cider-jack-in-clojurescript` or (`C-c M-J`)

### Run application:

```
lein clean
lein figwheel dev
```

Figwheel will automatically push cljs changes to the browser.

Wait a bit, then browse to [http://localhost:3449](http://localhost:3449).

## Production Build

To compile clojurescript to javascript:

```
lein clean
lein cljsbuild once min
```