Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tzbob/hokko
Experimental Push/Pull FRP Implementation
https://github.com/tzbob/hokko
frp functional-reactive-programming scala
Last synced: 8 days ago
JSON representation
Experimental Push/Pull FRP Implementation
- Host: GitHub
- URL: https://github.com/tzbob/hokko
- Owner: tzbob
- Created: 2015-01-20T21:24:12.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-04-10T12:35:45.000Z (over 5 years ago)
- Last Synced: 2024-04-16T00:49:04.517Z (7 months ago)
- Topics: frp, functional-reactive-programming, scala
- Language: Scala
- Size: 146 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hokko
[![Build Status](https://travis-ci.org/tzbob/hokko.svg?branch=master)](https://travis-ci.org/tzbob/hokko)
[![codecov](https://codecov.io/gh/tzbob/hokko/branch/master/graph/badge.svg)](https://codecov.io/gh/tzbob/hokko)Hokko is an experimental Scala Push/Pull FRP implementation[1].
It provides Non-Discrete Behaviors, Discrete Behaviors and Events.## Repository
```core``` contains the core FRP library. It has the continuous, discrete and incremental behavior implementations as well as the event implementation in ```shared/src/main/scala/hokko/```. Syntactic sugar to make use of the type-class-based implementation can be found in ```shared/src/main/scala/hokko/syntax/```. An experimental helper front-end is available in ```shared/src/main/scala/hokko/control/```.
```collection``` contains the FRP incremental collection abstractions. ```shared/src/main/scala/hokko/collection/``` contains implementations for common collection operations.
```jvm/test``` contains test cases for both ```core``` and ```shared```. These can be run with sbt: ```sbt test``` and serve as examples of the library.