CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 10 Aug 2025 00:30:50 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090907070248
location: https://web.archive.org/web/20090907070248/https://github.com/weavejester/compojure/tree/stable
server-timing: captures_list;dur=0.823209, exclusion.robots;dur=0.023182, exclusion.robots.policy;dur=0.008838, esindex;dur=0.018578, cdx.remote;dur=157.624165, LoadShardBlock;dur=636.700161, PetaboxLoader3.datanode;dur=152.763804, PetaboxLoader3.resolve;dur=218.435001
x-app-server: wwwb-app216
x-ts: 302
x-tr: 857
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app216; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 10 Aug 2025 00:30:51 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Mon, 07 Sep 2009 07:02:48 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "258a987a3e900ae55c3b0fc52eef3774"
x-archive-orig-x-runtime: 480ms
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 22703
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 07 Sep 2009 07:02:48 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 07 Sep 2009 07:02:48 GMT", ; rel="memento"; datetime="Mon, 07 Sep 2009 07:02:48 GMT", ; rel="last memento"; datetime="Mon, 07 Sep 2009 07:02:48 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_11_20090907051600_crawl101.gpg-c/52_11_20090907070209_crawl101.arc.gz
server-timing: captures_list;dur=0.487156, exclusion.robots;dur=0.018500, exclusion.robots.policy;dur=0.008840, esindex;dur=0.010125, cdx.remote;dur=12.978725, LoadShardBlock;dur=443.042466, PetaboxLoader3.datanode;dur=136.377860, PetaboxLoader3.resolve;dur=267.634433, load_resource;dur=248.128649
x-app-server: wwwb-app216
x-ts: 200
x-tr: 780
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
weavejester's compojure at stable - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | Concise web framework for Clojure edit |
Homepage: | https://groups.google.com/group/compojure edit |
Public Clone URL: |
git://github.com/weavejester/compojure.git
Give this clone URL to anyone.
git clone git://github.com/weavejester/compojure.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:weavejester/compojure.git
|
name | age | message | |
---|---|---|---|
![]() |
README.markdown | Loading commit data... ![]() |
|
![]() |
build.xml | ||
![]() |
epl-v10.html | Sat Jan 17 19:16:13 -0800 2009 | Changed license to EPL 1.0 to match Clojure and... [weavejester] |
![]() |
src/ | ||
![]() |
test/ |
README.markdown
Compojure is an open source web framework for the Clojure programming language. It emphasizes a thin I/O layer and a functional approach to web development.
Compojure is still in active development. Version 0.1 is now available.
Sample Code
Here's a small web application written in Compojure:
(use 'compojure)
(defservlet my-servlet
(GET "/"
(html [:h1 "Hello World"]))
(ANY "*"
(page-not-found)))
(run-server {:port 8080}
"/*" my-servlet)
Dependencies
To run Compojure, you'll need:
- The Clojure programming language
- The Clojure-Contrib library
- A Java servlet container like Jetty
And to run Compojure's unit tests, you'll need:
Documentation
For information on how to get started and use Compojure, please see our Wiki.
Community
The Compojure Group is the best place to ask questions about Compojure, suggest improvements or to report bugs.
Tutorials
Eric Lavigne has written a series of excellent tutorials on Compojure:
This feature is coming soon. Sit tight!