quicklisp-projects VS caveman

Compare quicklisp-projects vs caveman and see what are their differences.

quicklisp-projects

Metadata for projects tracked by Quicklisp. (by quicklisp)

caveman

Lightweight web application framework for Common Lisp. (by fukamachi)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
quicklisp-projects caveman
8 10
412 757
- -
8.2 0.0
5 months ago over 1 year ago
Common Lisp
- -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

quicklisp-projects

Posts with mentions or reviews of quicklisp-projects. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-08.
  • System "jzon" not found
    1 project | /r/Common_Lisp | 28 May 2023
    Where is it getting that system name from though? I thought quicklisp used project dir names: https://github.com/quicklisp/quicklisp-projects/blob/8aa3500e9c3c3c7e03e76675410008b7e4c4c42f/projects/jzon/source.txt
  • Using SVGs in Common Lisp web apps with Djula
    8 projects | dev.to | 8 Aug 2022
    The tracking issue for adding cl-djula-svg to quicklisp is here. You may want to check it for any updates.
  • Lisp in 99 lines of C and how to write one yourself [pdf]
    9 projects | news.ycombinator.com | 14 Jul 2022
    Why do you need to build them in when you can just load your favorite libraries that do these functions with https://www.quicklisp.org/ , especially for http the great libraries by Fukamachi: https://github.com/fukamachi parallel processing: https://lparallel.org/ etc.

    I'm very grateful that common lisp does not version up (like python), but you can always load a new or newer version of libraries with no impact on your core production code. (Such as a rewrite when the language gets a new version - this never happens with Common Lisp)

  • Common Lisp 3D graphics code repo - very preliminary
    3 projects | /r/Common_Lisp | 15 Jun 2022
    QUICKLISP comes with a regularly updated software distribution, see quicklisp-projects. This software distribution is pulled once when QUICKLISP is installed and can be later updated with (ql:update-all-dists). Once a project is added to the QUICKLISP dist, its updates are also added regularly and are available to users who care of issuing (ql:update-all-dists).
  • An experiment: cl2nix to assist lispPackages (WIP)
    1 project | /r/NixOS | 28 Dec 2021
    Testing on quicklisp-projects
  • Learn Common Lisp by Example: GTK GUI with SBCL
    2 projects | dev.to | 19 Nov 2021
    The Common Lisp bindings to GTK can be installed with Quicklisp. If you don't already have Quicklisp installed, it's painless. See the Quicklisp website for more details, but here's an example of installing Quicklisp on Debian and configuring SBCL. The steps should be the same for any Linux distro and macOS.
  • What happened to Quicklisp?
    1 project | /r/lisp | 10 Oct 2021
    I've noticed that beta.quicklisp.org no longer resolves. Neither does https://www.quicklisp.org/. What's going on?
  • Why do people use Quicklisp although it is known to be vulnerable to man-in-the-middle attacks?
    5 projects | /r/lisp | 30 Jan 2021
    As for the packages themselves, you can look at the repository information for each package at https://github.com/quicklisp/quicklisp-projects and use that to get the packages yourself manually. Most of them just use the latest commit in the package's respective git repos. A few use specific tags. Some, have to be gotten by other means. It is always possible, by looking at the quicklisp update data listing all the packages, to get the url for the package tarballs on the quicklisp server and download them manually.

caveman

Posts with mentions or reviews of caveman. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-26.
  • How do you think about version number management?
    5 projects | /r/Common_Lisp | 26 Feb 2023
  • I want to pursue this web app project - advice using CL?
    10 projects | /r/Common_Lisp | 4 Jan 2023
  • Mito: An ORM for Common Lisp
    4 projects | dev.to | 22 Aug 2022
    We are going to walk through the examples by building an online Warehouse management system using Caveman
  • Using SVGs in Common Lisp web apps with Djula
    8 projects | dev.to | 8 Aug 2022
    Djula is a port of Python's Django template engine to Common Lisp. It's the default templating engine used by the framework Caveman for building web applications
  • Is Woo still "beta quality" or prod ready?
    7 projects | /r/lisp | 3 Jun 2022
    Appreciate it. Can I ask one last thing. Between Snooze and Caveman2, which is the more current project?
  • Practical? Common Lisp on the JVM: A quick intro to ABCL for modern web apps
    1 project | news.ycombinator.com | 5 Aug 2021
    This is interesting from a "look what we can do!" perspective, but practically speaking, I'm not sure there's a good reason for doing it this way. For all practical purposes, it would be better to use one of the "native" Common Lisp libraries for doing this, such as Caveman: http://8arrow.org/caveman/

    Even as a big Common Lisp fan, I would really question using it in a situation where the project has strict requirements to use a particular framework for another language.

  • Building Common Lisp web apps with Tailwind CSS
    3 projects | dev.to | 6 Jul 2021
    In this post, I am going to walk you through to setup Tailwind CSS for a Common Lisp web application using Caveman. If you want to know more about creating web applications using Common Lisp and Caveman, please check my previous posts on the topic.
  • Building a Rentals Listing web application in Common Lisp
    6 projects | dev.to | 5 Jul 2021
    We are going to use Caveman for scaffolding this project. Caveman is a lightweight web application framework created by Eitaro Fukamachi for Common lisp. Caveman is available on Quicklisp, so you can install it with:
  • Lisp for the Web - 5
    7 projects | dev.to | 3 Jul 2021
    Hence I chose Caveman for this project. After having been played around with and without Caveman for building web applications in Common Lisp, I found that it is the best framework out there for developing web apps in Lisp. Caveman is a lightweight web application framework created by Eitaro Fukamachi for Common lisp. Fukamachi has got some serious tools for doing web development in Lisp. Please feel free to check out his Github profile for more useful tools.
  • How to deploy Caveman applications to Heroku?
    2 projects | /r/lisp | 2 Jul 2021
    I have been trying to come up with a standard template using Caveman to deploy on Heroku. But I am struck with these issues, not quite getting it to work with the available buildpacks. Lot of the related articles are hopelessly outdated. Appreciate any help or pointers? https://github.com/fukamachi/caveman/issues/126 https://gitlab.com/duncan-bayne/heroku-buildpack-common-lisp/-/issues/6

What are some alternatives?

When comparing quicklisp-projects and caveman you can also consider the following projects:

kons-9 - Common Lisp 3D Graphics Project

lisp-for-the-web - Code for lisp for the web post

ulisp-zero - A pared-down version of uLisp for hackers.

slime - The Superior Lisp Interaction Mode for Emacs

aserve - AllegroServe, a web server written in Common Lisp

cl-super-rentals - Super rentals in Common Lisp

BuildYourOwnLisp - Learn C and build your own programming language in under 1000 lines of code!

heroku-buildpack-common-lisp

djula - Common Lisp port of the Django templating language

clack - Web server abstraction layer for Common Lisp

mal - mal - Make a Lisp

easy-routes - Yet another routes handling utility on top of Hunchentoot