Is there a reframe/cljfx-like subscription/memoization-context library available?

This page summarizes the projects mentioned and recommended in the original post on /r/Clojure

CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • javelin

    Spreadsheet-like dataflow programming in ClojureScript.

    An aspect that flex has that is important when using it with UI frameworks is the ability to control when to start listening to something and when something updates. This is why it differentiates between "signals," which are pure calculations that are inert unless actively being listened to, and "effects" which do side effects and can be started/stopped. In React and other GUI frameworks, you need to be able to abide by the lifecycle of the framework, which means you may need to wait to start running updates until the component your effect is used in has actually appeared in the UI. This is provided by effect and listen returning a function that, when called, starts listening and calling the return value of that stops. Javelin does not give you quite this much control; defc= is eager and will start listening and updating immediately. See https://github.com/hoplon/javelin/issues/27 for their discussion about this very topic.

  • CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  • subscriptions

    A subscriptions library over a source of data (forked + extracted from re-frame)

    The subscriptions library is designed to delegate to reagent and has a clojure implementation here which is not reactive right now. It should be straightforward to substitute in the posh implementation in that namespace and achieve parity with cljs. There are already working test cases in clojure for computing derived values here. If you want to take a shot at that I would welcome a PR :D

  • hoplon

    Simple and powerful tool for building web apps out of highly composable elements in ClojureScript.

    What you want to achieve is called Incremental Computations. And clojure have a cool framework https://hoplon.io. And part of that framework is https://github.com/hoplon/javelin library, doing exactly what you want

  • flex

    flex is a reactive signal library for Clojure(Script) (by lilactown)

    https://github.com/lilactown/flex is a reactive, incremental computation library I've written very much inspired by reagent (which re-frame builds on top of for its subscription). It is pure CLJC, working on both CLJS and CLJC.

  • incremental

    A library for incremental computations

    Something like data science I think is more similar to a GUI than a microservice. Something like observablehq has already proven that this model works very well for notebooks. Incremental, one of the grandaddies of many reactive libraries and frameworks these days, was similarly developed in the context of doing data analysis and then extended into GUI programming.

  • electric

    Electric Clojure: full-stack differential dataflow for UI (by hyperfiddle)

  • matrix

    Fine-grained, transparent data flow between generative objects. (by kennytilton)

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • missionary

    A functional effect and streaming system for Clojure/Script

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Reactive Relational Algebra

    3 projects | news.ycombinator.com | 20 Sep 2024
  • Humble Chronicles: Managing State with Signals

    4 projects | /r/Clojure | 16 May 2023
  • Comparison of manifold and clojure.core.async

    3 projects | /r/Clojure | 9 Jan 2023
  • Is there a general IO library built to work with core.async?

    2 projects | /r/Clojure | 30 Dec 2022
  • Structuring Clojure Applications

    3 projects | news.ycombinator.com | 19 Dec 2022