Joy will be a full stack web framework written in janet
This project is in early development so expect major changes
(import joy)
(defn home [request]
(joy/respond :text
"Have some joy with janet 😇"))
(def routes
(joy/routes [:get "/" home]))
(def app (joy/app routes))
(joy/serve app 8000)