Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.42 KB

README.markdown

File metadata and controls

55 lines (36 loc) · 1.42 KB

Clack - Web Application Environment for Common Lisp

Build Status Coverage Status

Clack is a web application environment for Common Lisp inspired by Python's WSGI and Ruby's Rack. Your awesome framework should base on this.

Usage

(defpackage simple-app
  (:use :cl
        :clack))
(in-package :simple-app)

(defvar *handler*
    (clackup
      #'(lambda (env)
          '(200 (:content-type "text/plain") ("Hello, Clack!")))))

Open your web browser and go to http://localhost:5000/. You should get "Hello, Clack!".

To stop the server, use (clack:stop *handler*).

Installation

(ql:quickload :clack)

Documentation

Server

Author

Copyright

Copyright (c) 2011-2014 Eitaro Fukamachi & contributors

License

Licensed under the LLGPL License.