Tuesday, June 2, 2009

http://stilts.j4cbo.com/trac

http://stilts.j4cbo.com/trac


SML on Stilts ¶

Stilts is a framework for robust web development based on multistage programming. Rather than performing extensive introspection and processing at runtime, Stilts compiles portions of the application together in multiple passes to ensure strict correctness between components. For example, templates are never parsed on the fly; instead, they are pre-serialized as much as possible into code. Type-checking all invocations of the template ensures that the application always passes templates the parameters they expect. Similarly, SQL statements are wrapped together with their input and output types, and escaping code inserted automatically.

The framework is written in Standard ML. Both SML/NJ and MLton are supported, with parallel CM and ML Basis build systems.

Currently, the following components exist:

* Core Web application types, signatures, and utility functions.
* Server implementations of FastCGI, SCGI, and HTTP, allowing Stilts applications to be invoked from a variety of front-end Web servers or as a standalone daemon.
* Smelt, an HTML / XML templating system.
* Squall, a SQL query wrapper function generator.
* Infrastructure for interfacing with MySQL via libmysqlclient, using ML-NLFFI.
* A simple Wiki, as a demo application.

See each component's README file for more documentation.

Source code is available via Subversion at http://stilts.j4cbo.com/svn/trunk/, or can be browsed through trac.

No comments: