Paella is a simple HTTP server framework for Sagittarius Scheme. The
server itself is based on (net server)
library.
This repository contains (tapas)
which is a simple CLOS based HTTP
component framework and (plato)
which is a simple web application
framework.
(import (rnrs)
(net server)
(paella))
(define config (make-http-server-config :max-thread 5))
(define http-dispatcher
(make-http-server-dispatcher
(GET "/" (http-file-handler "index.html" "text/html"))))
(define server
(make-simple-server "8080" (http-server-handler http-dispatcher)
:config config))
(server-start! server)
- Paella: Paella reference manual
- Tapas: Tapas reference manual
- Plato: Plato reference manual
This library requries Sagittarius Scheme 0.6.10 (HEAD) or later.