farolero VS cloroutine

Compare farolero vs cloroutine and see what are their differences.

farolero

Thread-safe Common Lisp style conditions and restarts for Clojure(Script) and Babashka. (by IGJoshua)

cloroutine

Coroutine support for clojure (by leonoel)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
farolero cloroutine
16 11
358 219
- -
2.4 0.0
15 days ago about 1 year ago
Clojure Clojure
Eclipse Public License 1.0 Eclipse Public License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

farolero

Posts with mentions or reviews of farolero. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-09-07.

cloroutine

Posts with mentions or reviews of cloroutine. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-30.
  • ClojureRS – Clojure interpreter implemented in Rust
    9 projects | news.ycombinator.com | 30 Apr 2022
    Thanks for sharing! I think these restarts could definitely be implemented as a library in Clojure with the help of a coroutine library like https://github.com/leonoel/cloroutine#guides
  • GitHub - leonoel/cloroutine: Coroutine support for clojure
    2 projects | /r/Clojure | 15 Apr 2022
    Do you mean the example here https://github.com/leonoel/cloroutine/blob/master/doc/01-generators.md , with the `*tail* binding? It took me a long time looking at it to finally grok it, and it's really hard to explain in English but basically when the coroutine comes across one of these symbols that are "breaks" (in our case, "yield" is such a breaking symbol), then it will pause the coroutine, and actually call what the symbol points to (the implementation of "yield"), which returns (cons x *tail*), and keep in mind that it is all run within a recursive call to gen-seq where *tail* is bound to a lazy-seq of the remainder of the generator (binding [*tail* (gen-seq gen)] (gen)), it's pretty confusing but yeah just have to stare at it for a long time I think haha.
  • CLJ-2555: clojure.core/iteration · clojure/clojure@e45e478
    3 projects | /r/Clojure | 14 Jan 2022
    I think Clojure is really missing python/js-style generators, like what is implemented in https://github.com/leonoel/cloroutine/blob/master/doc/01-generators.md
  • Real-life use cases for CLJS macros
    1 project | /r/Clojure | 14 Oct 2021
    The next level up is core.async go blocks which compile your AST to a state machine. Also see cloroutine which also compiles the AST to a state machine or something, one of the tutorials uses cloroutine to add async/await to Clojure.
  • Continuations in Clojure
    4 projects | /r/Clojure | 8 Aug 2021
  • 6 Years of Professional Clojure
    6 projects | news.ycombinator.com | 2 Aug 2021
  • Common Lisp Style Conditions+Restarts in Clojure
    5 projects | /r/Clojure | 10 Apr 2021
    Coroutines are a more general concept, and can be used to implement conditions/delimited continuations. There’s an example in their docs.

What are some alternatives?

When comparing farolero and cloroutine you can also consider the following projects:

ex - In which we deal with exceptions the clojure way

zio-schema - Compositional, type-safe schema definitions, which enable auto-derivation of codecs and migrations.

wingman - Restartable exception handling for Clojure, allowing you to recover from exceptions without unwinding the stack.

core.async - Facilities for async programming and communication in Clojure

clojure-scheme - Clojure to Scheme to C to the bare metal.

ClojureRS - Clojure, implemented atop Rust (unofficial)

cloture - Clojure in Common Lisp

py4cl2 - Call python from Common Lisp

await-cps - async/await for continuation-passing style functions

cafe-latte - An implementation of Common Lisp dynamic variables, control flow operators, and condition system in plain Java.

pure-conditioning - A simple, fast, purely functional condition / restart system for Clojure.