Configure non-emacs Common Lisp Dev Env for web application development?

I am trying to configure Common Lisp Dev Env to develop web applications on my 64-bit Ubuntu 10.04 LTS field, and I can not find any decent noobs-oriented tutorial. The closest I came with Peter Seibel was Lisp in a box, but I hate Emacs with passion and seem to have older versions of SBCL and CLISP (which are my preferred CL implementations).

I do not want to use any commercial implementations. I am looking for a simple installation to write some very simple CRUD applications involving, perhaps, hunchentoot, some frameworks such as weblocks, CL-WHO, CL-SQl, sqlite or some nosql data warehouses such as mongo and couch.

Assuming I'm going with either SBCL or CLISP on Linux, what is the best tool for managing packages and libraries? ASDF? I'm looking for simplicity and consistency, and I don't expect to use a ton of libs ...

+4
source share
2 answers

There is an Eclipse plugin for Common Lisp called Cusp.

+3
source

Take a look at clbuild . clbuild is a script shell that helps with loading, compiling, invoking Common Lisp applications. It is used by default for SBCL, but otherwise tries to be somewhat independent of your local environment and is widely used by Common Lisp developers.

+1
source

Source: https://habr.com/ru/post/1312936/


All Articles