Email or username:

Password:

Forgot your password?
Niki Tonsky

What is the most current web-server for Clojure with best websockets support? And what’s the best way to deal with them on Clojure side? Ring? Aleph? Immutant? Something else?

10 comments
Григорий Клюшников

Since Clojure runs on JVM, I'd recommend Jetty

Sergey Trofimov

@nikitonsky I like Undertow. No problems with websockets. I even wrote my own ring adapter library for it.

Niki Tonsky

@serioga Like, directly? Yeah, I noticed that Immutant was not updating anymore

Sergey Trofimov

@nikitonsky I wrote an adapter library for Undertow. So it's almost like directly.

Sergey Trofimov

@nikitonsky Not updating is fine. But now Immutant is not compatible with the latest versions of slf4j, that's why I've made my own adapter.

#clojure #undertow #immutant

Martin Kavalar

@nikitonsky I really like http-kit, comes with websocket support built-in.

Go Up