CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 31 Jul 2025 08:35:26 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090625002941
location: https://web.archive.org/web/20090625002941/https://github.com/weavejester/compojure/tree/master
server-timing: captures_list;dur=1.093891, exclusion.robots;dur=0.034016, exclusion.robots.policy;dur=0.015963, esindex;dur=0.023186, cdx.remote;dur=19.092349, LoadShardBlock;dur=296.085386, PetaboxLoader3.datanode;dur=119.155200, PetaboxLoader3.resolve;dur=82.657194
x-app-server: wwwb-app216
x-ts: 302
x-tr: 377
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: 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: Thu, 31 Jul 2025 08:35:26 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Thu, 25 Jun 2009 00:29:40 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 307ms
x-archive-orig-etag: "f50eddef2a24050c74f8a0fc0827740b"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 24158
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 25 Jun 2009 00:29:41 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 21 Dec 2008 02:40:33 GMT", ; rel="prev memento"; datetime="Wed, 22 Apr 2009 22:56:11 GMT", ; rel="memento"; datetime="Thu, 25 Jun 2009 00:29:41 GMT", ; rel="next memento"; datetime="Fri, 24 Jul 2009 03:27:35 GMT", ; rel="last memento"; datetime="Sat, 26 Jul 2025 13:42:52 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_10_20090624212420_crawl103-c/52_10_20090625002827_crawl101.arc.gz
server-timing: captures_list;dur=0.549357, exclusion.robots;dur=0.025652, exclusion.robots.policy;dur=0.011567, esindex;dur=0.012154, cdx.remote;dur=10.061484, LoadShardBlock;dur=388.578573, PetaboxLoader3.datanode;dur=253.254768, PetaboxLoader3.resolve;dur=232.138561, load_resource;dur=221.188424
x-app-server: wwwb-app216
x-ts: 200
x-tr: 705
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 master - 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 | Sun Jun 14 06:44:18 -0700 2009 | Updated README to version 0.2 [weavejester] |
![]() |
build.xml | Fri Apr 24 14:32:09 -0700 2009 | Use ant to run tests ($ script/test -> $ ant te... [Luke Renn] |
![]() |
epl-v10.html | Sat Jan 17 19:16:13 -0800 2009 | Changed license to EPL 1.0 to match Clojure and... [weavejester] |
![]() |
src/ | Wed Jun 24 15:13:28 -0700 2009 | Changed the name of with-params to with-request... [budu] |
![]() |
test/ | Wed Jun 24 14:56:06 -0700 2009 | Added test for seal/unseal [weavejester] |
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. The current stable branch has been released as version 0.2.
Sample Code
Here's a small web application written in Compojure:
(use 'compojure)
(defroutes my-app
(GET "/"
(html [:h1 "Hello World"]))
(ANY "*"
(page-not-found)))
(run-server {:port 8080}
"/*" (servlet my-app))
Dependencies
To run Compojure, you'll need:
- The Clojure programming language
- The Clojure-Contrib library
- A Java servlet container like Jetty
- Apache Commons FileUpload, IO and Codec.
These dependencies can be downloaded automatically using:
ant deps
Documentation
For information on how to get started and use Compojure, please see our Wiki.
There is also a rough draft of a Compojure Tutorial available to read.
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!