A web framework for Guile https://cbaines.codeberg.page/safsaf/
  • Scheme 52%
  • Tree-sitter Query 45.4%
  • JavaScript 1.1%
  • Makefile 0.8%
  • M4 0.4%
  • Other 0.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Christopher Baines 6a7d0c8545
All checks were successful
/ test (push) Successful in 26s
Bump version to 0.4
2026-08-28 09:35:18 +01:00
.forgejo/workflows Add missing logo to website 2026-04-14 10:32:01 +03:00
build-aux Implement syntax highlighting in the HTML manual 2026-08-26 11:50:17 +01:00
doc Implement syntax highlighting in the HTML manual 2026-08-26 11:50:17 +01:00
examples More general documentation fixes and improvements 2026-08-26 07:58:43 +01:00
safsaf Fix some issues around CORS support 2026-08-26 11:10:30 +01:00
tests Handle OPTIONS * 2026-08-26 11:11:03 +01:00
.dir-locals.el Fix the with-exception-handler formatting 2026-08-06 16:17:42 +01:00
.gitignore Implement syntax highlighting in the HTML manual 2026-08-26 11:50:17 +01:00
AUTHORS Initial commit 2026-04-13 14:24:19 +03:00
bootstrap.sh Initial commit 2026-04-13 14:24:19 +03:00
CLAUDE.md Make more documentation fixes and improvements 2026-08-25 22:40:21 +01:00
configure.ac Implement syntax highlighting in the HTML manual 2026-08-26 11:50:17 +01:00
COPYING Initial commit 2026-04-13 14:24:19 +03:00
COPYING.LESSER Initial commit 2026-04-13 14:24:19 +03:00
guile.am Initial commit 2026-04-13 14:24:19 +03:00
guix-dev.scm Implement syntax highlighting in the HTML manual 2026-08-26 11:50:17 +01:00
Makefile.am Implement syntax highlighting in the HTML manual 2026-08-26 11:50:17 +01:00
NEWS Handle OPTIONS * 2026-08-26 11:11:03 +01:00
pre-inst-env.in Initial commit 2026-04-13 14:24:19 +03:00
README.md Add initial internationalisation support 2026-04-19 14:06:59 +01:00
safsaf.scm Handle OPTIONS * 2026-08-26 11:11:03 +01:00
STYLE.md Initial commit 2026-04-13 14:24:19 +03:00
VERSION Bump version to 0.4 2026-08-28 09:35:18 +01:00

Safsaf

Safsaf

A web framework for GNU Guile, using Guile Fibers and the Guile Knots web server.

Developed based off of the Guix Data Service and Nar Herder codebases, written using Claude Code running Claude Opus 4.6.

Quick Example

(use-modules (safsaf)
             (safsaf router)
             (safsaf response-helpers))

(define routes
  (list
   (route 'GET '() (lambda (request body-port)
                     (text-response "Hello, world!")))
   (route '* '* (lambda (request body-port)
                  (not-found-response)))))

(run-safsaf routes #:port 8080)

Design

Safsaf aims for functional over imperitive configuration and to be minimal but very extensible.

Suspendable ports in Guile plus Guile Fibers is used both for Safsaf internals, but should also be used for user applications where possible and suitable.

Features

  • Request router with parameterised segments, wildcards, nested groups, and reverse routing (path-for)
  • Handler wrappers (middleware) applied per-route or per-group via wrap-routes
  • Included handler wrappers: logging, CORS, CSRF protection, sessions (signed cookies), security headers, trailing-slash normalization, exception handling
  • Request helpers: form body parsing, multipart parsing, query strings, cookies
  • Response helpers: HTML/SXML, JSON, redirects, plain text, static files with Last-Modified / Cache-Control
  • Server-Sent Events (SSE): streaming text/event-stream responses with keepalives and Last-Event-ID replay
  • Parameter parsing: declarative param specs with built-in processors, CSRF integration, and error inspection
  • Internationalisation: gettext-style t / tn helpers backed by an in-Scheme catalog loaded from .po files, with a locale handler wrapper that selects per-request from route params, cookie, or Accept-Language

Wishlist

  • WebSockets support

Other Guile web frameworks

Dependencies

A Guix development environment is provided via guix-dev.scm and .envrc (direnv).

License

LGPL-3.0-or-later