Where Gleam meets Mendix.
We connect the Gleam and Mendix communities — so Mendix widget developers can enjoy the power of Gleam, and Gleam developers can tap into Mendix's rich widget ecosystem.
|
Build tooling & framework for Mendix Pluggable Widget development.
gleam run -m glendix/dev
gleam run -m glendix/build
gleam run -m glendix/define |
Use Mendix's rich widget ecosystem in any Gleam web project. Works with lustre, redraw, or any Gleam frontend framework.
gleam run -m mendraw/install
gleam run -m mendraw/marketplace |
| JavaScript / TypeScript | Gleam ✨ | |
|---|---|---|
| Type safety | Runtime errors possible | ✅ Compile-time guarantees |
null / undefined |
Anywhere, anytime | ✅ Explicit with Option type |
| Pattern matching | Limited | ✅ Exhaustive pattern matching |
| Immutability | Manual discipline | ✅ Built-in by default |