Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paudirac/cassiopeia
A turtle, what else?
https://github.com/paudirac/cassiopeia
functional-programming functional-reactive-programming study
Last synced: 4 days ago
JSON representation
A turtle, what else?
- Host: GitHub
- URL: https://github.com/paudirac/cassiopeia
- Owner: paudirac
- License: epl-1.0
- Created: 2017-02-27T23:27:39.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-07-19T15:58:05.000Z (over 5 years ago)
- Last Synced: 2024-11-13T21:43:08.539Z (2 months ago)
- Topics: functional-programming, functional-reactive-programming, study
- Language: Clojure
- Homepage:
- Size: 91.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cassiopeia
A [re-frame](https://github.com/Day8/re-frame) application designed show
how to construct in an easy way a nontrivial problem in a
functional style using a right set of tools.This is somehow inspired by the [guile tutorial](https://www.gnu.org/software/guile/docs/guile-tut/tutorial.html).
## First steps
The first thing to do is to start a leiningen project with the following command.
```
lein new re-frame cassiopeia +test
```Then run it
```
lein clean
lein figwheel dev
```This will compile the project and start a development web server serving
at [http://localhost:3449](http://localhost:3449).
A REPL will appear and the prompt will become active when the browser
connects. Now you can type
```
(.info js/console (str "The meaning of life is " (+ 40 2)))
```
and check the browser console to have displayed the log message.## References
* https://github.com/Day8/re-frame-template