restas icon indicating copy to clipboard operation
restas copied to clipboard

Common Lisp web framework

RESTAS_ is a Common Lisp web application framework. Its key features are:

  • RESTAS_ was developed to simplify development of web applications following the REST_ architectural style.

  • RESTAS is based on the Hunchentoot_ HTTP server. Web application development with RESTAS is in many ways simpler than with Hunchentoot, but some knowledge of Hunchentoot is required, at least about working with hunchentoot:request and hunchentoot:reply.

  • Request dispatch is based on a route system. The route system is the key concept of RESTAS_ and provides unique features not found in other web frameworks.

  • The other key RESTAS_ concept is its module system, which provides a simple and flexible mechanism for modularized code reuse.

  • Interactive development support. Any RESTAS code (such as the definition of a route, a module or a submodule) can be recompiled at any time when you work in SLIME_ and any changes you made can be immediately seen in the browser. No web server restart or other complicated actions are needed.

  • SLIME_ integration. The inner structure of a web application can be investigated with the standard "SLIME Inspector." For example, there is a "site map" and a simple code navigation with this map.

  • Easy to use, pure Lisp web application daemonization facility based on RESTAS_ and SBCL_ in Linux without the use of Screen_ or detachtty_.

  • RESTAS is not an MVC framework, although it is not incompatible with the concept. From the MVC point of view, RESTAS_ provides the controller level. Nevertheless, RESTAS_ provides an effective and flexible way for separation of logic and representation, because it does not put any constraints on the structure of applications. Separation of model and controller can be effectively performed with Common Lisp facilities, and, hence, doesn't need any special support from the framework.

  • RESTAS does not come with a templating library. cl-closure-template_ and HTML-TEMPLATE_ are two good templating libraries that can be used with RESTAS.

RESTAS_ is distributed under the terms of the Lisp LGPL_ license.

.. _RESTAS: http://restas.lisper.ru/ .. _SLIME: http://common-lisp.net/project/slime/ .. _Hunchentoot: http://www.weitz.de/hunchentoot/ .. _SBCL: http://www.sbcl.org/ .. _Screen: http://www.gnu.org/software/screen/ .. _detachtty: http://www.cliki.net/detachtty .. _HTML-TEMPLATE: http://www.weitz.de/html-template/ .. _cl-closure-template: https://github.com/archimag/cl-closure-template .. _REST: http://en.wikipedia.org/wiki/Representational_State_Transfer .. _Lisp LGPL: http://opensource.franz.com/preamble.html