GitHub - weavejester/compojure: A concise routing library for Ring/Clojure (original) (raw)
Compojure
Compojure is a small routing library for Ring that allows web applications to be composed of small, independent parts.
Installation
Add the following dependency to your project.clj
file:
Documentation
Community
- Google Group
- #compojure on Freenode IRC
Usage
This small Compojure application demonstrates creating a Ring handler from two routes:
(ns hello-world.core (:require [compojure.core :refer :all] [compojure.route :as route]))
(defroutes app (GET "/" [] "
Hello World
") (route/not-found "Page not found
"))Also refer to the Getting Started page on the wiki.
License
Copyright © 2024 James Reeves
Distributed under the Eclipse Public License, the same as Clojure.