Joy: Web framework with Clojure syntax, fast startup and low memory usage

Joy is a web framework written in janet for people who like clojure syntax, fast startup time and very low memory usage. (import joy)(defn home [request]  (joy/render :text “You found joy!”))(def routes [[:get “/” home]])(def app (joy/handler routes))(joy/server app 8000) Joy starts up in milliseconds so you can get started (and restarted) without worrying about restarting…

Read More