sarat1669
I want to know if we can implement flow based programming using a graph. Where each node is a process by itself, and the graph can be dynamic in nature. I’m not sure how I can achieve this in elixir. Please let me know your thoughts.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 23 to 14- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
antonmi
I would recommend using a new one - GitHub - antonmi/ALF: Flow-based Application Layer Framework · GitHub
sarat1669
Finally got a chance to work on v0.2
Will be actively working on it to make it production ready
Moved the repo to a new place and changed the name of the package
The new changes are inspired by project flogo
Source; GitHub - factor18/flo: Flow based programming for elixir
Hex: flo | Hex
PTAL, this is still WIP but I think a step in the right direction
It would be great if you can review the codebase. PS: I am still a beginner.
sarat1669
@zsolt001 I’ve seen your project recently. Thanks for the post.
zsolt001
@sarat1669 In case you’re still looking. I’ve been working on something similar: Exred
pcmarks
Hi Sarat,
I apologize for not getting back to you sooner - been very busy. I will take a look at your work in a few days.
Best,
Peter
sarat1669
Hi, I’ve created a proof-of-concept implementation.
Please have a look and let me know your views.
Any suggestions or contributions are welcome.
https://github.com/sarat1669/virta
This is inspired by @pcmarks implementation.
pcmarks
I wrote about Elixir and FBP in a blog at the time that GenStage and Flow were announced.
marcelotto
Here’s another relatively new library implementing FBP and is based on GenStage: https://github.com/suitepad-gmbh/pipette
sarat1669
I was exploring ‘ElixirFBP’ and is the closest to what I am looking for, thanks for finding the alternatives.
amacgregor
What you are looking for is GitHub - antonmi/flowex: Flow-Based Programming framework for Elixir · GitHub which mixes FBP and ROP, I’m personalize working on my own library called conveyer based on the following libraries: