Lisp Web Frameworks? [closed]

2019-01-20 22:55发布

What are the popular (ok, popular is relative) web frameworks for the various flavours of LISP?

16条回答
Deceive 欺骗
2楼-- · 2019-01-20 23:34

PLT Scheme features a built-in, continuation-based web server.

Update: PLT Scheme is now called Racket.

查看更多
Lonely孤独者°
3楼-- · 2019-01-20 23:37
Ridiculous、
4楼-- · 2019-01-20 23:40

Lisp-on-lines is a web application framework built on top of CLSQL and UCW and provides an application development model similar in many ways to Ruby on Rails. Right now it can be found at http://versions.tech.coop/lisp-on-lines/.

http://www.cliki.net/lisp-on-lines

http://kevin.casa.cavewallarts.com/LISP/LOL/lol.html

查看更多
我欲成王,谁敢阻挡
5楼-- · 2019-01-20 23:43

Restas is another web framework that has seen recent updates:

http://restas.lisper.ru/en/

Its overview

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.
查看更多
Root(大扎)
6楼-- · 2019-01-20 23:46

This question is a bit old but I thought I'd share my recent discovery: the Hop language which is based on Scheme and is quite complete.

HOP is a multi-tier programming language for the Web 2.0 and the so-called diffuse Web. It is designed for programming interactive web applications in many fields such as multimedia (web galleries, music players, ...), ubiquitous and house automation (SmartPhones, personal appliance), mashups, office (web agendas, mail clients, ...), etc.

HOP features:

  • an extensive set of widgets for programming fancy and portable Web GUIs,
  • full compatibility with traditional Web technologies (JavaScript, HTML, CSS),
  • HTML5 support, a versatile Web server supporting HTTP/1.0 and HTTP/1.1,
  • a native multimedia support for enabling ubiquitous Web multimedia applications,
  • fast WebDAV level 1 support,
  • an optimizing native code compiler for server code,
  • an on-the-fly JavaScript compiler for client code,
  • an extensive set of libraries for the mail, calendars, databases, Telephony, ...
查看更多
我只想做你的唯一
7楼-- · 2019-01-20 23:47

Hunchentoot is also quite widespread

查看更多
登录 后发表回答