r/Clojure 8h ago

Which web framework do you use at your company and why?

Upvotes

Wondering what is the most used web framework for professional clojure developers.


r/Clojure 16h ago

The Bowling Game - From Imperative to Functional Programming - Part 2

Thumbnail fpilluminated.org
Upvotes

r/Clojure 16h ago

The Bowling Game - From Imperative to Functional Programming - Part 2

Thumbnail fpilluminated.org
Upvotes

r/Clojure 1d ago

Jolt now runs on Android and iOS

Thumbnail jlt-commons.github.io
Upvotes

r/Clojure 2d ago

Awesome Jolt - a curated list for Jolt, a Clojure implementation that skips the JVM

Upvotes

We created jlt-commons, the shared community home for libraries and tooling around Jolt, and just put together awesome-jolt to catalog what's there.

Jolt is a Clojure implementation that compiles to native binaries through Chez Scheme, so there's no JVM in the loop. It can also target the browser through Gambit's JavaScript backend. jolt-lang keeps the language and the essential libraries, and jlt-commons is where everything growing around them lives, either adopted from a maintainer who could no longer keep up with a project, or incubated as new work.

The list covers:

  • The 8 jlt-commons projects: raylib-jlt and raygui-jlt (bindings to raylib/raygui over jolt.ffi), glitter and its glitter-gl/glitter-uikit variants (a Replicant-style renderer for GTK4, OpenGL, and native macOS AppKit), raylib-ios and raylib-android (native builds with no JVM, JIT, Kotlin, or Java), and ebb (a port of missionary's dataflow model)
  • Ordinary JVM Clojure libraries that run on Jolt unmodified (Ring, Malli, HoneySQL, and more)
  • Tooling: nREPL, test suites, example projects
  • Docs on installation, how Jolt differs from JVM Clojure, FFI, and performance

If you've wanted Clojure with a fast native startup or a small self-contained binary instead of a JVM, it's worth a look. There's also a #jolt channel on the Clojurians Slack if you want to talk to the people building it. Corrections and additions to the list are welcome, and happy to answer questions here.


r/Clojure 3d ago

jank reimagines C++ errors and gets an official native package repo

Thumbnail jank-lang.org
Upvotes

r/Clojure 4d ago

BOB 2027 (Feb 26, Berlin): Call is Open

Upvotes

We'd love to see more Clojure submissions at BOB!
bobkonf.de/2027/cfc.html


r/Clojure 5d ago

Clojure 1.12.6 is now available

Upvotes

Clojure 1.12.6 is now available

  • CLJ-2794 - gen-class - incorrectly treats interface default methods as abstract, throwing when the var delegate is unbound
  • CLJ-2974 - FnLoaderThunk - de/serialization no longer supported, throw

r/Clojure 5d ago

Triplox - A Datomic-inspired database with incremental queries

Upvotes

I have been working on a distributed Datalog engine à la Datomic on top of object storage. The system is called Triplox. I am using SlateDB at the storage layer. The main ideas are roughly the following (in no particular order):

  • Object storage centric. In it's final version Triplox should simply need a single (or likely two) S3 bucket(s) for deployment.
  • The Datomic Data model and API as main inspiration.
  • A Client/Server architecture. I hope that this will open the door to ecosystems outside of the JVM.
  • Incremental Datalog queries. You should be able to dynamically subscribe and detach from incremental Datalog queries. This is the most experimental part of Triplox and will need quite a bit of effort to get right, make fast, and to fully support all features of Datalog. See this page for an introduction.

I also wrote a intro post a while back. If you have questions, suggestions or feedback in any form please ask away. If you have an incremental Datalog problem or are working on sync engines, Triplox might be of interest .

Repo: https://github.com/fiV0/triplox
Website: https://triplox.xyz/
Incremental query tutorial: https://github.com/FiV0/triplox-incremental-tutorial


r/Clojure 6d ago

Introducing Plotje: Composable Plotting by Daniel Slutsky

Thumbnail clojurecivitas.org
Upvotes

r/Clojure 7d ago

Writing a Minecraft server in Clojure: it was fun

Upvotes

Minecraft is well known for being single-threaded, and parallelizing it is a difficult problem: everybody wants to write to the same shared state at the same time. Projects take years to deal with locks, thread ownership, splitting regions, and game logic is subject to threading rules: mechanics break against them, features crawl. Some remain quite sparse and have little to parallelize.

I wanted to see how it would feel in Clojure, but there was no Clojure server to look at, so I made one. The ideas parallel servers reinvent by hand - immutable snapshot, pure read phase, changes as data - are the language's defaults. If writing from many threads is difficult, then don't write: all game logic is pure functions (fn [world events]) that read the snapshot in parallel and return changes as deltas, merged in one place. The merge preserves order, so the parallel run is bit identical to the sequential one, and no mechanic cares how many cores it runs on.

The outcome: a server with mob AI, explosions, combat and item physics that matches vanilla 1.8.9 performance on one core and runs 4.5x faster on six. ~5500 lines of Clojure. It's a proof of concept; if you're curious, the code is on GitHub

https://github.com/Nozistance/collider


r/Clojure 7d ago

Who is hiring? August 31, 2026

Upvotes

Please include any restrictions (remote/on-site, geographical, workpermit, citizenship) that may apply.


r/Clojure 7d ago

Babashka 1.13.220 gets FFI

Thumbnail blog.michielborkent.nl
Upvotes

Today babashka 1.13.220 is released, with a new babashka.ffi namespace for calling C libraries directly from Babashka scripts. The babashka.ffi library is also available as a standalone library for JVM Clojure, so you can use it in your Clojure projects as well. Note that the API is still experimental, although no changes are currently planned. It just needs more exposure and your feedback :). Read the blog post for details.


r/Clojure 9d ago

Wrapping GTK4 in 800 lines of Clojure with Jolt

Thumbnail yogthos.net
Upvotes

r/Clojure 13d ago

[ANN] Slipway 2.1.0 - A Clojure Companion to Jetty

Thumbnail github.com
Upvotes

Slipway provides support for Eclipse Jetty in Clojure.

This release is a significant upgrade to previous versions of Slipway, including:

  • Embedded Jetty 12.1 with native handlers (no Servlet/EE dependencies).
  • Websockets (combining Jetty with Sente).
  • Extended OIDC support including:
    • Authorization Code Flow with Refresh Token redemption
    • Client Credentials Flow
  • Multi-Handler Server implementations
  • Virtual Host pinning of Handlers to Connections

r/Clojure 16d ago

cljrs (Clojurust) first steps

Thumbnail youtu.be
Upvotes

r/Clojure 18d ago

raylib examples in Jolt

Thumbnail raylib-jlt.b12n.app
Upvotes

r/Clojure 18d ago

Clojure Vs Rust - Waiting for clj.rs

Thumbnail youtu.be
Upvotes

r/Clojure 19d ago

Introduction of Reagami by Michiel Borkent

Thumbnail youtube.com
Upvotes

Fold your state into the DOM!
A minimal zero-deps Reagent-like in Squint and CLJS.


r/Clojure 19d ago

A bundle of CLI tasks for tools.deps projects

Thumbnail biffweb.com
Upvotes

r/Clojure 21d ago

A practical workflow for LLM-assisted development

Thumbnail yogthos.net
Upvotes

r/Clojure 21d ago

OrgPad new API with EDN integration

Thumbnail orgpad.info
Upvotes

API allows the full read and edit access to your data in OrgPad. The work was massive since OrgPad allows a lot of types of content and I wanted the API to be as simple to use as possible. Since OrgPad is written in Clojure, it allows aside JSON also EDN and Transit inputs/outputs.


r/Clojure 24d ago

legmacs demo : Emacs-like editor implemented in a clojure dialect running on plan9 and displaying in Windows Terminal

Thumbnail youtu.be
Upvotes

r/Clojure 27d ago

Joining Clojure shop. What should I know?

Upvotes

I will be writing primarily Clojure soon, after more than a decade of writing Scala. Do you have any hints or advice beyond what I can find in books or other learning resources?

Like competing approaches, nuances, political landscape, informal standards, footguns or anything like that?


r/Clojure 27d ago

biff.datastar: lightweight, reactive, server-side-rendered web UIs

Thumbnail github.com
Upvotes