SkillAgentSearch skills...

Compojure

A concise routing library for Ring/Clojure

Install / Use

/learn @weavejester/Compojure
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Compojure Build Status

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 deps.edn file:

compojure/compojure {:mvn/version "1.7.2"}

Or to your Leiningen project file:

[compojure "1.7.2"]

Documentation

Community

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 "/" [] "<h1>Hello World</h1>")
  (route/not-found "<h1>Page not found</h1>"))

Also refer to the Getting Started page on the wiki.

License

Copyright © 2025 James Reeves

Distributed under the Eclipse Public License, the same as Clojure.

View on GitHub
GitHub Stars4.1k
CategoryDevelopment
Updated4d ago
Forks260

Languages

Clojure

Security Score

100/100

Audited on Mar 24, 2026

No findings