ClojureRS VS cloroutine

Compare ClojureRS vs cloroutine and see what are their differences.

ClojureRS

Clojure, implemented atop Rust (unofficial) (by clojure-rs)

cloroutine

Coroutine support for clojure (by leonoel)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
ClojureRS cloroutine
4 11
934 219
0.3% -
2.2 0.0
about 1 year ago about 1 year ago
Rust Clojure
Apache License 2.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.

ClojureRS

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

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 ClojureRS and cloroutine you can also consider the following projects:

cloture - Clojure in Common Lisp

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

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

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

dotfiles - Home sweet home 🏠

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

babashka - Native, fast starting Clojure interpreter for scripting

process - Clojure library for shelling out / spawning sub-processes

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

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