zorbash
I created Kitto a framework for dashboards inspired by Dashing.
The distributed characteristics of Elixir and the low memory footprint (compared to Ruby/Rails) make it ideal for a dashboard server. It feels familiar to users of Dashing and provides a DSL to define jobs.
# File jobs/random.ex
use Kitto.Job.DSL
job :random, every: :second do
broadcast! :random, %{value: :rand.uniform * 100 |> Float.round}
end
The front end uses React/Webpack (which are really widespread) so it should be easy to dive in and code widgets without having to learn yet another framework.
Currently i’m expanding the wiki and general documentation so to make it as straightforward as possible to use.
You’re welcome to try it, make suggestions and if you evaluate it positively, help me get it in awesome elixir.
Trending in Announcing
You may know https://ui.shadcn.com/, a UI component library for React. I really love it’s design style and components. I’ve built some co...
New
Hey everyone!
Req is an HTTP client for Elixir that I’ve been working on for quite some time. There is already a lot of HTTP clients out...
New
Samly can be used to enable SAML 2.0 Single Sign On in a Plug/Phoenix application.
This library uses Erlang esaml to provide
plug enabl...
New
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
The repo is at GitHub - cyberchitta/openai_ex: Community maintained Elixir library for OpenAI API · GitHub.
Docs are at OpenaiEx User Gu...
New
The Chelekom project is a library of Phoenix and LiveView components generated via Mix tasks to fit developer needs seamlessly.
One of i...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Other Trending Topics
I am seeing a lot of aplications of Argumentum ad Vericundiam in software discussions. They do link some piece of writing and point us to...
New
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
I was thinking since Goatmire Elixir turned out pretty good I should maybe do another one. 30th of Sep - 2nd of Oct this year./
The firs...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
shifters
That looks really interesting … think i will find time to play with it some time this week!
Cheers
Shifters
RobinSJ
This looks really awesome, great job!
zorbash
Thanks! If you think it’s awesome, vote it be part of awesome-elixir so that more people may see it and use it.
PatNowak
Great news! I used a lot of Dashings in Ruby and now it’s final time to use the new one
themarlzy
Finally bringing my love of analytics, visualisation and elixir. Great job!!
shifters
Hi,
can you indicate which OS platform you are using for your demo’s. including Erlang/Elixir/Phoenix/Nodejs versions. I have tried building on ubuntu 16.04 (and windows 7) and run into issues just compiling. (don’t know much about nodejs but ok with elixir/erlang etc).
cheers
Shifters
PS how about a complete mix project with all dependecies etc for the test system?
zorbash
Thanks a lot for giving it a try.
node/npm versions can be found in the “engines” section of demo/package.json at heroku · kittoframework/demo · GitHub (planning to have a heroku deployment guide).
I develop it using debian/testing and elixir v1.3 (can’t be sure about the exact erlang/otp version right now, I’m afk). You can also inspect the platform specs in the provided Dockerfile.
Please let me know if the above info helped.
shifters
Hi Zorbash,
thanks that did help - repo versions in Ubuntu 16.04 of nodejs and npm were old - i have updated to the latest direct from the web sites and everything compiles and runs fine - how time to play!
cheers for the direction!
Shifters
zorbash
I’m glad everything worked out for you. I’ll add the supported elixir/erlang/node/npm versions to the readme, maybe even some matrix builds in travis. Let me know if you need further guidance.
zorbash
I you wish to get started with Kitto, you should probably read this blogpost: https://davejlong.com/2016/11/17/writing-jobs-for-kitto/