Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vindarel/curated-awesome-cl

A curated and non exhaustive list of Common Lisp libraries and resources.
https://github.com/vindarel/curated-awesome-cl

List: curated-awesome-cl

Last synced: about 1 month ago
JSON representation

A curated and non exhaustive list of Common Lisp libraries and resources.

Awesome Lists containing this project

README

        



# My Curated Awesome Common Lisp

A curated list of _awesome_ Common Lisp stuff, curated for beginners.

Also don't miss the https://lispcookbook.github.io/cl-cookbook/ :)

You are invited to *make your own curated list*, and reference it here!

**edit: I now take much more care of the original list**

This was forked from the
[Awesome Common Lisp](https://github.com/CodyReichert/awesome-cl) and
modified following the ideas:
- useful things (for beginners) first: dev environment comes first, crypto last.
- prefer libraries that are superseeded by new and better ones: Drakma
is replaced by Dexador
- prefer documented libraries
- justifications come from my experience, and I am not experienced on all topics.
- remove some stuff. For a real look at the CL ecosystem, refer to the Awesome List, to Quickdocs or to Cliki.

All libraries listed here are available from [Quicklisp][16].

This is released under the GNU Free Documentation License - its text
is provided in the LICENSE file.

**Table of Contents**

- [My Curated Awesome Common Lisp](#my-curated-awesome-common-lisp)
- [Community](#community)
- [Development Environments](#development-environments)
- [Text Editor Resources](#text-editor-resources)
- [Emacs](#emacs)
- [Vim](#vim)
- [Lem](#lem)
- [Atom](#atom)
- [VSCode](#vscode)
- [Sublime Text](#sublime-text)
- [Notebooks](#notebooks)
- [REPLs](#repls)
- [Implementations](#implementations)
- [Build Systems](#build-systems)
- [Library Manager](#library-manager)
- [Tools](#tools)
- [Web](#web)
- [HTTP clients](#http-clients)
- [HTTP Servers](#http-servers)
- [Web frameworks](#web-frameworks)
- [Parsing html](#parsing-html)
- [Querying HTML/DOM](#querying-htmldom)
- [HTML generators and templates](#html-generators-and-templates)
- [URI handling](#uri-handling)
- [Javascript](#javascript)
- [Third-party APIs](#third-party-apis)
- [XML](#xml)
- [JSON](#json)
- [CSV](#csv)
- [Database and ORMs](#database-and-orms)
- [Foreign Function Interface](#foreign-function-interface)
- [Game Development](#game-development)
- [Graphics](#graphics)
- [GUI](#gui)
- [Natural Language Processing](#natural-language-processing)
- [Numerical and Scientific](#numerical-and-scientific)
- [Parallelism and Concurrency](#parallelism-and-concurrency)
- [Regex](#regex)
- [Unit Testing](#unit-testing)
- [Continuous Integration](#continuous-integration)
- [Utilities](#utilities)
- [Language extensions](#language-extensions)
- [System](#system)
- [I/O](#io)
- [Data validation](#data-validation)
- [Date and time](#date-and-time)
- [Logging](#logging)
- [Other](#other)
- [Crypto](#crypto)
- [Learning and Tutorials](#learning-and-tutorials)
- [Online](#online)
- [Beginner](#beginner)
- [Intermediate](#intermediate)
- [Advanced](#advanced)
- [Reference](#reference)
- [Offline](#offline)
- [Beginner](#beginner)
- [Intermediate](#intermediate)
- [Advanced](#advanced)
- [Contributing](#contributing)

Community
=========

* [Common Lisp Cookbook](https://lispcookbook.github.io/cl-cookbook/)
* [Reddit](https://www.reddit.com/r/lisp/)
* [Quickdocs](https://quickdocs.org/) - Ready and up to date documentation for all Common Lisp projects.

And see below, learning and tutorials.

Text Editor Resources
=====================

[Cookbook: getting started](https://lispcookbook.github.io/cl-cookbook/getting-started.html)

This contains plugins and other goodies for various text editors.

[Cookbook: editor resources](https://lispcookbook.github.io/cl-cookbook/editor-support.html)

## Emacs ##

* [Portacle][201] - A portable and multiplatform Common Lisp environment: SBCL, Quicklisp, Emacs, Slime, Git.
* [SLIME][29] - Superior Lisp Interaction Mode for Emacs; a full-blown environment for Common Lisp inside of Emacs. Public domain.

## Vim ##

* [SLIMV][187] - Superior Lisp Interaction Mode for Vim; a full-blown environment for Common Lisp inside of Vim. No license specified.

## Atom ##

* [SLIMA](https://github.com/neil-lindquist/SLIMA/) allows you to
interactively develop Common Lisp code, helping turn Atom into a
full-featured Lisp IDE. [MIT][200].

## VSCode

* [alive](https://github.com/nobody-famous/alive) - Common Lisp Extension for VSCode. Public domain.
* see the Cookbook: [using VSCode with Alive](https://lispcookbook.github.io/cl-cookbook/vscode-alive.html)

## Notebooks ##

* [cl-jupyter](https://github.com/fredokun/cl-jupyter) - A Common Lisp kernel for Jupyter notebooks [custom licence](https://github.com/fredokun/cl-jupyter/blob/master/LICENSE).

## REPLs ##

* [cl-repl](https://github.com/koji-kojiro/cl-repl) - an ipython-like REPL. With completion, shell commands, magic commands, debugger, etc. [MIT][200]. With [colorthemes](https://github.com/koji-kojiro/lem-pygments-colorthemes).
* [sbcli](https://github.com/hellerve/sbcli) - a simple readline REPL that doesn't get in your way. It doesn't have a debugger, it just prints the error. With optional syntax highlighting and useful shortcuts.

Implementations
===============

* [SBCL][12] - A fork of CMUCL; compiles to machine code. [Standard compliance][13]. Public domain, with some parts under [Expat][14] and [3-clause BSD][15].
- *Just use it if you don't know*
- *Install it from your package manager: `apt install sbcl`*
- *It does thorough type checking*
- *Google contributes to SBCL!*
* [Clozure Common Lisp](https://ccl.clozure.com/docs/ccl.html), for its fast compilation time, and to use on 32bits Raspberry Pi.

But there are more, see other ressources.

Build Systems
=============

* [ASDF][131] - it's the de-facto build system shipped with the implementations.

Library Manager
===============

* [Quicklisp][16] - *The* library manager.
- *You just must use it, then learn other tools that complement it.
* [Ultralisp](https://ultralisp.org/) - A quicklisp distribution that builds every five minutes (instead of one month for Quicklisp), and requires 3 clicks to add your project to it (instead of opening an issue and waiting for Quicklisp).
* [Roswell](https://github.com/roswell/roswell) - A Lisp implementation installer, script launcher and more.
- *it's useful, but not necessary to getting started.*
* [qlot][135] - A project-local library installer, similar to Bundler or Carton.

Tools
=====

These are applications or bits of code that make development in Common Lisp easier without being Common Lisp libraries themselves.

* [cl-cookieproject](https://github.com/vindarel/cl-cookieproject) - my project skeleton, more complete than the others. *New in 2021 :)*
* [quicksearch][140] - Look up online libraries from the REPL. *This one helped me sometimes*.

Web
===

HTTP clients
------------
* [Dexador][199] - An HTTP client: `(dex:get "http://url.com")`.

Web frameworks
--------------

There are more on the awesome-cl list, and in the wild. Those are my choices.

* Hunchentoot documentation on a "read the docs" style: https://common-lisp-libraries.readthedocs.io/hunchentoot/
* πŸ‘ [easy-routes](https://github.com/mmontone/easy-routes) - a routes handling system on top of Hunchentoot. It supports dispatch based on HTTP method, arguments extraction from the url path, decorators, url generation from route name, etc.
- *I like it a lot, that's what I use to define routes.*
* [Caveman][92] - A powerful web framework.
- *Written by E. Fukamachi, and with stars.*
* [Wookie](https://github.com/orthecreedence/wookie) - Asynchronous HTTP server. [Expat][14].
* [Snooze](https://github.com/joaotavora/snooze) - A RESTful web framework, built on Clack, where routes are just functions and HTTP conditions are just Lisp conditions. [LLGPL][8].
- *it seems great*
* [radiance](https://github.com/Shirakumo/radiance) - An extensible framework library and multi-application CMS.
* [cl-rest-server](https://github.com/mmontone/cl-rest-server) - a library for writing REST web APIs. Features validation with schemas, annotations for logging, caching, permissions or authentication, documentation via Swagger, etc. [MIT][200].
* [Weblocks](https://github.com/40ants/weblocks) - A widgets-based framework with a built-in ajax update mechanism that "solves the JavaScript problem". [LLGPL][8].
- *see its getting started tutorial, and come follow in the Gitter chat. I don't find Weblocks readme, though I built a toy web app with success. Things are happening there.*

There are more projects, more or less discontinued but interesting. See the other ressources.

*my 2 cents*: I find Clack-based frameworks (like Caveman) tedious to use. Be sure to test others (Wookie, Snooze,…). Don't juge projects uniquely by their numbers of Github stars.

HTTP Servers
------------
* [Hunchentoot](https://edicl.github.io/hunchentoot/) - the CL web server.
* [Clack][90] - A web application environment inspired by Rack and WSGI.
- *but it's seldom documented :/*
* [wookie][109] - Asynchronous HTTP server. [Expat][14].
* [woo](https://github.com/fukamachi/woo) - A fast non-blocking HTTP server on top of libev. [MIT][200].

Clack extensions:

* [clack-errors][94] - Error page middleware for Clack. [LLGPL][8].
* [hermetic][95] - Security for Clack-based web applications. [Expat][14].

Parsing html
------------

[Cookbook: web scraping](https://lispcookbook.github.io/cl-cookbook/web-scraping.html)

* [Plump][71] - A lenient HTTP/XML parser, tolerand on malformed markup. [Artistic License 2.0][51]. Best used with [lquery][72] and [clss][202].

Querying HTML/DOM
-----------------

* [lquery][72] - A jQuery-like HTML/DOM manipulation library. [Artistic License 2.0][51].

HTML generators and templates
-----------------------------

* [Djula][100] - A port of Django's template engine to Common Lisp.
- *very good, easy to use, no surprises. For example, defining custom filters is a breeze*.
* [Ten](https://github.com/mmontone/ten) - by Djula's maintainer, a more flexible framework, where we can write lisp expressions in templates.
- *Quite new, didn't try.*
* [spinneret][191] - Common Lisp HTML5 generator.
* [cl-markup][101] - Modern markup generation library. [LLGPL][8].

There are at least two for JSX-like mix of HTML inside Lisp. Crazy.

URI handling
------------
* [quri](https://github.com/fukamachi/quri) - Another URI library for
Common Lisp. Supports userinfo, IPv6 hostname, encoding/decoding
utilities,…
* [cl-slug](https://github.com/EuAndreh/cl-slug) - a small library to make slugs, mainly for URIs, transform in CamelCase, remove accentuation and punctuation, for english and beyound.

Javascript
----------
* [Parenscript][102] - A translator from Common Lisp to Javascript. [3-clause BSD][15].
* [parse-js][104] - A package for parsing ECMAScript 3. [zlib][33].
* [JSCL](https://github.com/jscl-project/jscl) - A CL-to-JS compiler designed to be self-hosting from day one. Lacks CLOS, format and loop.
* [sigil](https://github.com/burtonsamograd/sigil) - A Parenscript to
Javascript command line compiler and REPL. [MIT][200].

See also
[trident-mode](https://github.com/johnmastro/trident-mode.el), an Emacs
minor mode for live Parenscript interaction.

and new ones in development:

* [JACL](https://tailrecursion.com/JACL/)
* [Valtan](https://github.com/cxxxr/valtan)

Email
-----

* see the awesome list. There are wrappers to online services to send emails, and full IMAP solutions.

Third-party APIs
----------------

* [Aws-sign4](https://github.com/rotatef/aws-sign4) - Common Lisp library for Amazon Web Services signing version 4. [GNU GPL3][2].
* [north](https://shinmera.github.io/north) - The successor to the
South (Simple OaUTH) library, implementing the full oAuth 1.0a
protocol, both client and server sides. Using North you can easily
become an oAuth provider or consumer. [Artistic License 2.0][51].
* [avatar-api](https://github.com/eudoxia0/avatar-api) - Get avatars from Google+, Gravatar and others. [Expat][14].
* [chirp](https://github.com/Shinmera/chirp) - A Twitter client library. [Artistic License 2.0][51].
* [cl-irc](https://www.common-lisp.net/project/cl-irc/) - An IRC client library. [Expat][14].
* [cl-openid](https://common-lisp.net/project/cl-openid/darcs/cl-openid/) - An implementation of OpenID. [LLGPL][8].
* [cl-pushover](https://github.com/TeMPOraL/cl-pushover) - Common Lisp bindings to Pushover. [MIT][200].
* [cl-ses](https://github.com/CodyReichert/cl-ses/) - Library for AWS SES. [Expat][14].
* [humbler](https://github.com/Shinmera/humbler) - A Tumblr API interface. [Artistic License 2.0][51].

XML
===

* [CXML][70] - XML parser, with a range of extension libraries. [LLGPL][8].
* [Plump][71] - A lenient HTTP/XML parser, tolerand on malformed markup. [Artistic License 2.0][51]. Best used with [lquery][72] and [clss][202].
* [s-xml][168] - A basic parser. [LLGPL][8].
* [xmls][169] - A small, simple, non-validating XML parser. [3-clause BSD][15].

JSON
====

* [jonathan](https://github.com/Rudolph-Miller/jonathan) - A JSON encoder and decoder. [MIT][200].

CSV
===

* [cl-csv][170] - A library for parsing CSV files.
* *battle tested, used in the wild.*

Database and ORMs
=================

[Cookbook: databases](https://lispcookbook.github.io/cl-cookbook/databases.html)

* [mito][31] - An ORM for Common Lisp with migrations, schema versioning, relationships, PostgreSQL support.
- *I like it. It is an ORM, in that it allows to define classes and map them to tables, it gives CRUD functions for free, but other than that it is very flexible. We are closer to SQL than other ORMs out there.*
* [postmodern][32] - A library for interacting with PostgreSQL.

For much more, see the awesome-cl list.

Interaction with other languages
================================

## Python ##

* [py4cl](https://github.com/bendudson/py4cl) - A library that allows Common Lisp code to access Python libraries. It is basically the inverse of cl4py. [MIT][200].
* [cl4py](https://github.com/marcoheisig/cl4py) - The library cl4py (pronounce as clappy) allows Python programs to call Common Lisp libraries. [MIT][200].

See also [async-process](https://github.com/cxxxr/async-process/).

Game Development
================

* see the awesome list.

Graphics
========

These are libraries for working with graphics, rather than making GUIs (i.e. widget toolkits), which have their own section.

* [cl-cairo2][53] - Cairo bindings. [Boost 1.0][54]
* [cl-gd][61] - A library providing an interface to the GD graphics library. [FreeBSD][39].
* [cl-opengl][163] - CFFI bindings to OpenGL, GLU and GLUT APIs. [3-clause BSD][15].
* [cl-sdl2][60] - Bindings for SDL2 using C2FFI. [Expat][14].
* [cl-svg][57] - A basic library for producing SVG files. [Expat][14].
* [CLinch][63] - Common Lisp 2D/3D graphics engine for OpenGL. [FreeBSD][39].
* [donuts][138] - Graph drawing DSL for Common Lisp. [Expat][14].
* [lispbuilder-sdl][180] - A set of bindings for SDL. [Expat][14].
* [Vecto][55] - Simple vector drawing library. [FreeBSD][39].
* [zpng][56] - A library for creating PNG files. [FreeBSD][39].

GUI
===

https://lispcookbook.github.io/cl-cookbook/gui.html

* [ltk][179] - A binding for the Tk toolkit. [LLGPL][8] or [GNU LGPL2.1][11].
- *if you want a simple GUI and to be started the fastest, try Ltk!*
* [nodgui](https://notabug.org/cage/nodgui) - Bindings for the Tk toolkit, based on Ltk, with syntax sugar and additional widgets.
- *nodgui defines more widgets and syntax suger for Ltk. His maintainer his reactive.*
* [IUP](https://github.com/lispnik/iup/) - CFFI bindings to the [IUP](https://www.tecgraf.puc-rio.br/iup/) Portable User Interface library (pre-ALPHA). IUP is cross-platform (Windows, macOS, GNU/Linux, with new Android, iOs, Cocoa and Web Assembly drivers), has many widgets, has a small api and is actively developed.
- *More advanced than Tk, less than Qt. Also very easy to use. The Lisp library is very well done. Totally deserves more attention.*
* [Qtools](https://github.com/Shinmera/qtools/) - A Qt4 toolkit, based on CommonQt.
* *outdated. There's a Qt5 wrapper for ECL. I heard a Qt5 Qtools is coming…*
* [ceramic][192] - Desktop web apps with Common Lisp. [Expat][14].
* [Electron-lisp-boilerplate](https://github.com/mikelevins/electron-lisp-boilerplate) - A rudimentary boilerplate for building Electron apps with embedded Lisp helper processes.
* Electron app skeleton: [electron-sbcl-sqlite](https://github.com/mikelevins/electron-sbcl-sqlite/)
* [LispWork's CAPI](http://www.lispworks.com/products/capi.html) - A portable GUI toolkit, with mobile runtime. Proprietary, but comes with a free version.
- *the free version is easy to install, we can try it.*

Natural Language Processing
===========================

See the awesome-cl list.

Numerical and Scientific
========================

[Cookbook: numbers](https://lispcookbook.github.io/cl-cookbook/numbers.html)

[Cookbook: multidimensionnal arrays](https://lispcookbook.github.io/cl-cookbook/arrays.html)

*I am not knowledgeable here*

* [cl-spark][87] - Generates sparkline strings for lists of numbers. [Expat][14].
* [GSLL][84] - GNU Scientific Library for Lisp; allows the use of the GSL from Common Lisp. [GNU LGPL2.1][11].
* [lisp-stat](https://github.com/lisp-stat) - an environment for statistical computing, conceptually similar to R, that is also suitable for front-line production deployments. "It grew out of a desire to have an environment for rapidly prototyping analytical and A.I. solutions, and move directly to production environments with minimal friction."
* https://lisp-stat.dev/
* ships Luke Tierney's [XLisp-Stat](https://homepage.stat.uiowa.edu/~luke/xls/xlsinfo/) (a predecessor of R) as well as newer libraries.
* [common-lisp-stat][85] - Common Lisp statistics library. [FreeBSD][39].
* [lisp-matrix][86] - A matrix package. [FreeBSD][39].
* [maxima][165] - Computer algebra system. Not available on Quicklisp. [GNU GPL3][2].

Parallelism and Concurrency
===========================

[Cookbook: threads](https://lispcookbook.github.io/cl-cookbook/process.html)

* [BordeauxThreads][171] - Portable, shared-state concurrency. [Expat][14].
* [lparallel][114] - A library for parallel programming. [3-clause BSD][15].
* [lfarm](https://github.com/lmj/lfarm) - distributing work across machines (on top of lparallel and usocket). [BSD_3Clause][15]
* [cl-async][116] - A library for general-purpose, non-blocking programming, built on [libuv](https://github.com/libuv/libuv) (the library that powers Nodejs). [Expat][14].
* [chanl][117] - Portable, channel-based concurrency. [Expat][14], with parts under [3-clause BSD][15].
* [Moira](https://github.com/TBRSS/moira) - Monitor and restart background threads. In-lisp process supervisor. [MIT][200].
* [trivial-monitored-thread](https://gitlab.com/ediethelm/trivial-monitored-thread) -
a Common Lisp library offering a way of spawning threads and being
informed when one any of them crash and die. [MIT][200].
* [cl-gearman](https://github.com/taksatou/cl-gearman) - a library for the [Gearman](http://gearman.org/) distributed job system. [LLGPL][8].
* [swank-crew](https://github.com/brown/swank-crew) - distributed computation framework implemented using Swank Client. [BSD_3Clause][15].
* [cl-coroutine](https://github.com/takagi/cl-coroutine) - a coroutine library. It uses the CL-CONT continuations library in its implementation. [MIT][200].
* [STMX](https://github.com/cosmos72/stmx) - High performance Transactional Memory for Common Lisp. [LLGPL][8].

Actors pattern
--------------

* [cl-gserver](https://github.com/mdbergmann/cl-gserver) - an Erlang inspired GenServer. It is meant to encapsulate state, but also to execute async operations. Also with actors. Functionality regarding state is not unsimilar to Clojure's Agent or cl-actors. [MIT][200].

Event processing
----------------

* [simple-tasks](https://github.com/Shinmera/simple-tasks) - A very simple task scheduling framework. [Artistic License 2.0][51].
* [deeds](https://github.com/Shinmera/deeds) - Deeds is an Extensible
Event Delivery System. It allows for efficient event delivery to
multiple handlers with a complex event filtering
system. [Artistic License 2.0][51].
* [cl-flow](https://github.com/borodust/cl-flow/) - Data-flowish computation tree library for non-blocking concurrent Common Lisp. [MIT][200].
* [event-glue](https://github.com/orthecreedence/event-glue) - simple eventing abstraction. No dependencies. It can be used anywhere you need a generic event handling system. [MIT][200].

Job processing
--------------

* [SBCL's timers](http://www.sbcl.org/manual/#Timers), system-wide event schedulers.
* [cl-cron](https://github.com/ciel-lang/cl-cron) - A simple tool that provides cron like facilities.
* *it has no GitHub stars because it was on Bitbucket, but it's easy to use and it works well. Recommended.*
* [clerk](https://github.com/tsikov/clerk) - a cron-like scheduler with sane DSL. [MIT][200].

Regex
=====

[Cookbook: regular expressions](https://lispcookbook.github.io/cl-cookbook/regexp.html)

* [cl-ppcre][68] - Portable, Perl-compatible regular expressions. [FreeBSD][39].
* [one-more-re-nightmare](https://github.com/no-defun-allowed/one-more-re-nightmare) - a fast-ish regular expression compiler in Common Lisp. [BSD_2Clause][17].

Unit Testing
============

[Cookbook: testing and continuous integration](https://lispcookbook.github.io/cl-cookbook/testing.html)

* [FiveAM][123] - Simple regression testing framework.
* [Mockingbird](https://github.com/Chream/mockingbird) - A small
stubbing and mocking library for Common Lisp. Can also check wether
a stubbed function was called, how many times and with which
arguments. [MIT][200].
* [Check-it](https://github.com/DalekBaldwin/check-it) - A QuickCheck-style randomized property-based testing. [LLGPL][8].
* [cl-coveralls](https://github.com/fukamachi/cl-coveralls) - a helper
library to post test coverage to Coveralls. See
[continuous-integration on lisp-lang.org](http://lisp-lang.org/learn/continuous-integration)
and
[SBCL's code coverage tool](http://www.sbcl.org/manual/index.html#sb_002dcover). [FreeBSD][39].

*I think Parachute and Rove are unfinished and not enough developped.*

Continuous Integration
======================

[Cookbook: testing and continuous integration](https://lispcookbook.github.io/cl-cookbook/testing.html)

* Travis CI: we can use Roswell on Travis CI: see
[a tutorial](https://github.com/snmsts/roswell/wiki/Using-with-Travis-CI)
(cl-travis doesn't work with Travi's Docker based architecture).
* [cl-coveralls](https://github.com/fukamachi/cl-coveralls)
* Gitlab CI: https://lispcookbook.github.io/cl-cookbook/testing.html#gitlab-ci

Utilities
=========

Language extensions
-------------------

* [alexandria][149] - A general-purpose utility library.
- *you must know that one.*
* [serapeum](https://github.com/TBRSS/serapeum/) - Another general-purpose utility library.
- *lots of good stuff. Definitely worth checking out.*
* [rutils](https://github.com/vseloved/rutils) - radical yet reasonable syntactic utilities for Common Lisp.
- *also lots of good stuff. For example the hash-table utilities. I sometimes dislike the naming and the symbols used.*
* :star: [trivia](https://github.com/guicho271828/trivia/) - Optimized pattern-matching library. [LLGPL][8].
* [generic-cl](https://github.com/alex-gutev/generic-cl/) - Generic function interface to standard Common Lisp functions (equality, comparison, arithmetic, objects, iterator, sequences,…). [MIT][200]. See also the more lightweight [generic-comparability](https://github.com/pnathan/generic-comparability). [LLGPL][8].
* [FSet][164] - A functional, set-theoretic collections data structure library. [LLGPL][8].
* [trivial-types][145] - Trivial type definitions. [LLGPL][8].
* [cl-algebraic-data-type][146] - A library for defining algebraic data types in a similar spirit to Haskell or ML. [3-clause BSD][15].

Changing the syntax
-------------------

* [pythonic-string-reader](https://github.com/smithzvk/pythonic-string-reader) - A simple and unobtrusive read table modification inspired by Python's three quote strings. [BSD_3Clause][15].
* [cl-reader](https://github.com/digikar99/reader) - A utility library
intended at providing reader macros for lambdas, mapping, accessors,
hash-tables and hash-sets. [MIT][200].

Iteration
---------

* :star: [iterate](https://common-lisp.net/project/iterate/) - An iteration construct for Common Lisp which is extensible and Lispier. [MIT][200].
- *but make you a favor, learn loop by example!* https://lispcookbook.github.io/cl-cookbook/iteration.html
* [for](https://shinmera.github.io/for/) - A concise, lispy and extensible
iteration macro. Unlike loop it is extensible and sensible, and
unlike iterate it does not require code-walking and is easier to
extend.
- *it has one clause that works for all data structures.*
* [trivial-do](https://github.com/yitzchak/trivial-do/) - Additional dolist style macros for Common Lisp. [MIT][200].
* [doplus](https://bitbucket.org/alessiostalla/doplus/wiki/Home) – another extensible iteration library, similar to :for.
* [picl](https://github.com/anlsh/picl) - An (almost) complete port of Python's itertools package, complete with laziness where applicable, and not relying on cl-cont. [MIT][200].
* [gtwiwtg](https://github.com/cbeo/gtwiwtg) - A lazy sequences library. Similar to 'series' but not as complete. However it has a 'modern' API with stuff like `take`, `filter`, `for`, `fold`, etc. that is easy to use.
- *this ones looks like THE successor to Series*

Lambda shorthands
-----------------

* [fn](https://github.com/cbaggers/fn) - a couple of lambda shorthand macros. `(fn* (+ _ _)) --> (lambda (_) (+ _ _))`. Public domain.
* [f-underscore](https://gitlab.common-lisp.net/bpm/f-underscore) - a tiny library of functional programming utils. `(f_ (+ _ _)) -> (lambda (_) (+ _ _))`. Public domain.
* [cl-punch](https://github.com/windymelt/cl-punch/) - Scala-like anonymous lambda literals. `(mapcar ^(* 2 _) '(1 2 3 4 5))`. [MIT][200].

See also [Rutils](https://github.com/vseloved/rutils).

System
------

The de-facto library is [uiop](http://quickdocs.org/uiop/), the
Utilities for Implementation and OS Portability. It abstracts os
utilities (getevn, chdir, etc), pathnames, the filesystem, images,
spawning processes, and much more.

[Cookbook: interfacing with your OS](https://lispcookbook.github.io/cl-cookbook/os.html)

I/O
---

* [iolib][112] - I/O library. [Expat][14].
* [fast-io][113] - Fast octet-vector/stream I/O. [3-clause BSD][15].
* [trivial-utf8][119] - A small library for doing UTF-8-based I/O. Not available on Quicklisp. No license specified.

Data validation
---------------
* [ratify][77] - A collection of utilities to ratify, validate and parse inputs. [Artistic License 2.0][51].
* [clavier](https://github.com/mmontone/clavier) - General purpose validation library for Common Lisp. [MIT][200].
* [json-schema](https://github.com/fisxoj/json-schema) - A library for validating data against schemas of drafts 4, 6, 7, and 2019-09 of the [JSON Schema](https://json-schema.org/) standard. [LLGPL][8].
* [sanity-clause](https://github.com/fisxoj/sanity-clause) - a data serialization/contract library for Common Lisp. Schemas can be property lists or class-based, allowing to check slots' types during `make-instance`. [LLGPL][8].

Date and time
-------------

[Cookbook: date and time](https://lispcookbook.github.io/cl-cookbook/dates_and_times.html)

* [localtime][122] - A development library for manipulating date and time information in a semi-standard manner. [3-clause BSD][15].
* [cl-date-time-parser](https://github.com/tkych/cl-date-time-parser) - Parse date-time-string, liberally. Hides the difference between date-time formats, and enables to manage date and time as the one date-time format. [MIT][200].
* [chronicity](https://github.com/chaitanyagupta/chronicity) - A natural language date and time parse, to parse strings like "3 days from now". [BSD_3Clause][15].
* [local-time-duration](https://github.com/enaeher/local-time-duration) -
Duration processing library built on top of local-time. [MIT][200].
* [iso-8601-date](https://gitlab.com/DataLinkDroid/iso-8601-date) - Miscellaneous date routines in Common Lisp, based around the ISO 8601 string representation. [LLGPL][8].
* [calendar-date](https://github.com/takagi/calendar-date) - a Gregorian calendar date library. [MIT][200].
* [periods](https://github.com/jwiegley/periods) - manipulating date/time objects at a higher level. With series-compatible data structure. [BSD_3Clause][15].

Logging
-------
* [log4cl][124] - Logging framework modelled after Log4J.

There are more if you have special needs.

Crypto
======

* [Ironclad][49] - A library of crypto functions for Common Lisp. Not considered secure, but is still useful for the message digest functions. [Expat][14].
* [crypto-shortcuts][50] - Collection of common crypto shortcuts. [Artistic License 2.0][51].

Learning and Tutorials
=====================

πŸ“’ Everyone, I have an announce! I have been learning CL the hard way:
I read a lot, I wrote a lot of tutorials on the Cookbook and on my
blog, I had to ask a lot of questions, I built libraries and softwares
and I stumbled across a lot of issues. Often, my problems were not due
to the language itself, but rather in interfacing with the outside world.

So, **I built a Common Lisp course in videos** with the goal for it to be
**the most efficient way to learn Common Lisp today**. It is on Udemy:

- πŸ“Ή [Common Lisp programming: from novice to effective developer](https://www.udemy.com/course/common-lisp-programming/?referralCode=2F3D698BBC4326F94358) ⭐

You can find the table of contents details, notes and exercises on
[its Github](https://github.com/vindarel/common-lisp-course-in-videos/). It
takes so much time that it is not available for free. Check my Twitter or [my blog](https://lisp-journey.gitlab.io/) for discounts (at the beginning of the month, often). Thanks for your support, it helps.

See also other videos I post on Youtube sometimes:

- [How to create a full-featured Common Lisp project from scratch](https://www.youtube.com/watch?v=XFc513MJjos&feature=youtu.be)
- [Web requests in Common Lisp: how to fetch the Github API](https://www.youtube.com/watch?v=TAtwcBh1QLg)
- etc

## Online ##

Beginner
--------

* [Learn X in Y minutes | Where X = Common Lisp][195] - Small Common Lisp tutorial covering the essentials.
* [Practical Common Lisp][17] - A good introductory text to Common Lisp, with practical examples.
* [Common LISP: A Gentle Introduction to Symbolic Computation][161] - A nice introduction into the language.
* [Learn LISP: Simply Easy Learning][196] - A good set of introductory tutorials; includes interactive examples.
* [Common Lisp Koans][197] - The project guides the learner progressively through many Common Lisp language features.

Intermediate
------------

* [CL Cookbook](https://lispcookbook.github.io/cl-cookbook/)
* [Common Lisp tips][152] - A collaborative resource with useful tips and tricks.
- πŸ“Ή [Common Lisp programming: from novice to effective developer](https://www.udemy.com/course/common-lisp-programming/?referralCode=2F3D698BBC4326F94358), a video course tutorial on the Udemy platform, by me (@vindarel) (CL Cookbook, lisp-journey) (*paywall*, some free videos).

Advanced
--------

* [Let Over Lambda][156] - A book on advanced macro techniques. The first six chapters are available online.
* [On Lisp][26] - Paul Graham's amazing book on Lisp macros (and other interesting things).

Reference
---------

* [Common Lisp Quick Reference][25] - A distilled, pocket-size version of the ANSI CL spec. Available for download as a PDF.
* [CLHS][22] - The Common Lisp HyperSpec; the ANSI CL standard, in hypertext form.
* [Common Lisp the Langauge][160] - The original standard for Common Lisp before the ANSI spec.
* [Minispec][24] - A friendlier, but less-complete, version of CLHS. Also contains documentation for some commonly-used CL libraries (such as Alexandria).
* [Quickdocs][28] - A reference for the libraries provided by Quicklisp.

## Offline ##

Beginner
--------

* [Land of Lisp][18] - A fun, game-oriented introduction to Common Lisp.
* [Practical Common Lisp][17] - A good introductory text to Common Lisp, with practical examples.
* [Common Lisp Koans][197] - The project guides the learner progressively through many Common Lisp language features.

Intermediate
------------

* [ANSI Common Lisp][19] - A thorough, practical covering of the entire language, with exercises. Not recommended as a starter text, due to [some caveats][20].

Advanced
--------

* [Let Over Lambda][156] - A book on advanced macro techniques. All eight chapters are available in the print copy.
* [Object-Oriented Programming in Common Lisp: A Programmer's Guide to CLOS][21] - An old, but very thorough book on CLOS.
* [Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp][157] - A book on programming AI that covers some advanced Lisp.

Contributing
============

Contribute upstream to the awesome-cl list or write your own curated one, and share it!

[2]: http://www.gnu.org/copyleft/gpl.html
[3]: http://www.gnu.org/software/classpath/license.html
[4]: https://common-lisp.net/project/armedbear/faq.shtml#qa
[7]: http://ccl.clozure.com/
[8]: http://opensource.franz.com/preamble.html
[11]: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
[12]: http://www.sbcl.org/index.html
[13]: http://www.sbcl.org/manual/index.html#ANSI-Conformance
[14]: http://directory.fsf.org/wiki/License:Expat
[15]: http://directory.fsf.org/wiki/License:BSD_3Clause
[16]: https://www.quicklisp.org/beta/
[17]: http://www.gigamonkeys.com/book/
[18]: http://landoflisp.com/
[19]: http://www.paulgraham.com/acl.html
[20]: http://www.cs.northwestern.edu/academics/courses/325/readings/graham/graham-notes.html
[21]: http://www.goodreads.com/book/show/1175730.Object_Oriented_Programming_in_Common_LISP
[22]: http://www.lispworks.com/documentation/lw50/CLHS/Front/index.htm
[23]: https://github.com/fukamachi/sxql
[24]: http://minispec.org/index.html
[25]: http://clqr.boundp.org/index.html
[26]: http://www.paulgraham.com/onlisp.html
[28]: http://quickdocs.org/
[29]: https://github.com/slime/slime
[31]: https://github.com/fukamachi/mito
[32]: http://marijnhaverbeke.nl/postmodern/
[33]: http://directory.fsf.org/wiki/License:Zlib
[39]: http://directory.fsf.org/wiki?title=License:FreeBSD
[47]: http://directory.fsf.org/wiki/License:CPLv1.0
[49]: http://method-combination.net/lisp/ironclad/
[50]: https://github.com/Shinmera/crypto-shortcuts
[51]: http://directory.fsf.org/wiki/License:ArtisticLicense2.0
[52]: https://github.com/cbaggers/varjo
[53]: https://github.com/rpav/cl-cairo2
[54]: http://directory.fsf.org/wiki/License:Boost1.0
[55]: http://www.xach.com/lisp/vecto/
[56]: http://www.xach.com/lisp/zpng/
[57]: https://code.google.com/archive/p/cl-svg
[58]: https://github.com/anwyn/cl-horde3d/
[59]: http://directory.fsf.org/wiki/License:EPLv1.0
[60]: https://github.com/lispgames/cl-sdl2
[61]: http://weitz.de/cl-gd/
[64]: https://github.com/commonqt/commonqt
[68]: http://weitz.de/cl-ppcre/
[69]: https://github.com/nikodemus/esrap
[70]: https://common-lisp.net/project/cxml/
[71]: https://github.com/Shinmera/plump
[72]: https://github.com/Shinmera/lquery
[73]: https://github.com/orthecreedence/http-parse
[74]: https://github.com/a0-prw/simple-currency
[75]: https://github.com/archimag/puri-unicode
[75]: https://github.com/hankhero/cl-json
[76]: https://github.com/madnificent/jsown
[77]: https://github.com/Shinmera/ratify
[79]: https://github.com/usocket/usocket
[80]: https://github.com/eudoxia0/postmaster
[81]: https://github.com/eudoxia0/trivial-ssh
[82]: https://github.com/Shinmera/colleen
[83]: https://www.common-lisp.net/project/cl-irc/
[84]: https://common-lisp.net/project/gsll/
[85]: https://github.com/blindglobe/common-lisp-stat/
[86]: https://github.com/blindglobe/lisp-matrix
[87]: https://github.com/tkych/cl-spark
[88]: https://github.com/vseloved/cl-nlp
[89]: http://directory.fsf.org/wiki/License:Apache2.0
[90]: https://github.com/fukamachi/clack
[91]: https://github.com/Shirakumo/radiance
[92]: https://github.com/fukamachi/caveman
[93]: https://github.com/fukamachi/ningle
[94]: https://github.com/eudoxia0/clack-errors
[95]: https://github.com/eudoxia0/hermetic
[96]: https://common-lisp.net/project/cl-openid/darcs/cl-openid/
[100]: https://github.com/mmontone/djula
[101]: https://github.com/arielnetworks/cl-markup
[102]: https://github.com/vsedach/Parenscript
[103]: http://marijnhaverbeke.nl/cl-javascript/
[104]: http://marijnhaverbeke.nl/parse-js/
[105]: https://github.com/eudoxia0/avatar-api
[106]: https://github.com/Shinmera/chirp
[107]: https://github.com/Shinmera/humbler
[109]: https://github.com/orthecreedence/wookie
[110]: https://github.com/franzinc/aserve
[111]: http://weitz.de/cl-fad/
[112]: https://github.com/sionescu/iolib
[113]: https://github.com/rpav/fast-io
[114]: https://github.com/lmj/lparallel
[115]: https://github.com/pkhuong/Xecto
[116]: https://github.com/orthecreedence/cl-async
[117]: https://github.com/zkat/chanl
[118]: https://github.com/takagi/cl-cuda
[119]: https://common-lisp.net/project/trivial-utf-8/
[120]: https://github.com/cl-babel/babel
[121]: https://github.com/fukamachi/cl-locale
[122]: https://common-lisp.net/project/local-time/
[123]: https://github.com/sionescu/fiveam
[124]: https://github.com/7max/log4cl
[125]: https://github.com/cl21/cl21
[126]: https://github.com/m2ym/cl-syntax
[127]: https://github.com/m2ym/cl-annot
[128]: http://www.cliki.net/cl-2dsyntax
[129]: https://github.com/melisgl/named-readtables
[130]: http://www.cliki.net/cl-interpol
[131]: https://common-lisp.net/project/asdf/
[132]: https://github.com/eudoxia0/asdf-linguist
[133]: https://github.com/CodyReichert/cl-disque
[134]: https://github.com/tarballs-are-good/quickutil
[135]: https://github.com/fukamachi/qlot
[136]: https://github.com/fukamachi/cl-project
[137]: http://mr.gy/software/texp/
[138]: https://github.com/tkych/donuts
[139]: https://common-lisp.net/project/iterate/
[140]: https://github.com/tkych/quicksearch
[141]: https://github.com/fukamachi/lesque
[142]: https://github.com/fukamachi/envy
[143]: https://github.com/Shinmera/ubiquitous
[144]: https://github.com/Shinmera/trivial-benchmark
[145]: https://github.com/m2ym/trivial-types
[146]: https://bitbucket.org/tarballs_are_good/cl-algebraic-data-type
[147]: https://bitbucket.org/tarballs_are_good/template
[148]: https://bitbucket.org/tarballs_are_good/interface
[149]: https://common-lisp.net/project/alexandria/
[150]: https://github.com/TBRSS/serapeum/
[152]: https://github.com/lisp-tips/lisp-tips/issues/
[153]: https://github.com/ahungry/glyphs/
[154]: https://cheryllium.wordpress.com/2014/02/22/commonqt-tutorial-1/
[155]: https://github.com/dmitryvk/cl-sqlite
[156]: http://letoverlambda.com/
[157]: http://norvig.com/paip.html
[158]: https://common-lisp.net/project/anaphora/
[160]: http://www.cs.cmu.edu/Groups/AI/html/cltl/cltl2.html
[161]: http://www.cs.cmu.edu/afs/cs.cmu.edu/user/dst/www/LispBook/index.html
[162]: http://cliki.net/closer-mop
[163]: https://github.com/3b/cl-opengl
[164]: http://quickdocs.org/fset/
[165]: http://maxima.sourceforge.net/
[166]: http://www.xach.com/lisp/salza2/
[167]: https://github.com/froydnj/chipz
[168]: http://cliki.net/S-XML
[169]: http://quickdocs.org/xmls/
[170]: https://github.com/AccelerationNet/cl-csv
[171]: https://common-lisp.net/project/bordeaux-threads/
[172]: https://common-lisp.net/project/osicat/
[173]: http://www.swig.org/
[174]: https://github.com/trivial-garbage/trivial-garbage
[175]: https://github.com/gwkkwg/lift
[176]: https://github.com/gwkkwg/lift/blob/master/COPYING
[178]: https://github.com/dmitryvk/cl-gtk2
[179]: http://www.peter-herth.de/ltk/
[180]: https://github.com/lispbuilder/lispbuilder
[181]: https://github.com/ahefner/mixalot
[182]: https://github.com/mishoo/sytes
[183]: https://github.com/hargettp/hh-web
[184]: http://weitz.de/cl-who/
[185]: https://github.com/paddymul/css-lite
[186]: http://www.cliki.net/CLSQL
[187]: https://github.com/kovisoft/slimv
[188]: https://github.com/triclops200/quickapp
[189]: https://github.com/triclops200/quickapp-cli
[190]: https://www.gnu.org/software/gcl/
[191]: https://github.com/ruricolist/spinneret
[192]: https://ceramic.github.io/
[193]: https://github.com/CodyReichert/cl-ses/
[194]: https://github.com/fukamachi/prove
[195]: https://learnxinyminutes.com/docs/common-lisp/
[196]: http://www.tutorialspoint.com/lisp/index.htm
[197]: https://github.com/google/lisp-koans
[198]: http://emergent-languages.org/Babel2/
[199]: https://github.com/fukamachi/dexador
[200]: https://opensource.org/licenses/MIT
[201]: https://shinmera.github.io/portacle/
[202]: https://github.com/Shinmera/CLSS