Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.55 KB

README.ja.markdown

File metadata and controls

48 lines (33 loc) · 1.55 KB

About

web4rはCommon Lispで書かれた継続ベースのwebアプリケーションフレームワークです。web4rは「世界一短いコードでwebアプリ作成ができるフレームワーク」を目指して開発されました。 (ここで言うコードの短さとはトークンの数を意味します。)

"Hello World" アプリケーション:

(require :web4r)
(use-package :web4r)

(defpage hello (:get (name "world"))
  [p "Hello, " name])

(start-server)

; wget http://localhost:8080/hello => '<p>Hello, world</p>'
; wget http://localhost:8080/hello?name=tomo => '<p>Hello, tomo</p>'

Arc Challenge:

(defpage said ()
  (form/cont (a/cont [p "You said: " (last-post "foo")] "click here")
   (input-text "foo")))

Blog アプリケーション:

(ele:open-store *example-bdb*)

(defpclass blog ()
  ((title :length 50 :index t)
   (body  :length 3000)))

(genpages blog)

Documentation

Download
Install
Tutorial
API Documentation

これらのドキュメントはソースのdocsディレクトリ以下に同梱されています