pkulchenko/fullmoon: Fast and minimalistic web framework based on Redbean web server.

Fullmoon is a fast and minimalistic web framework based on Redbean — a portable, single-file distributable web server.

Everything you need comes in a single file with no external dependencies (both for development and distribution) that runs on Windows, Linux, or macOS. The following is a complete example of a Fullmoon application:

local fm = require “fullmoon”
fm.setTemplate(“hello”, “Hello, {%& name %}”)
fm.setRoute(“/hello/:name”, function(r)
return fm.serveContent(“hello”,…