clavier VS cl-forms

Compare clavier vs cl-forms and see what are their differences.

clavier

:heavy_check_mark: General purpose validation library for Common Lisp (by mmontone)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
clavier cl-forms
2 4
17 39
- -
6.6 4.6
3 months ago 6 months ago
Common Lisp Common Lisp
MIT License MIT License
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.

clavier

Posts with mentions or reviews of clavier. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-28.
  • Form validation in Common Lisp
    2 projects | dev.to | 28 Feb 2024
    (defun validate-all (validators object) "Run all validators in turn. Return two values: the status (boolean), and a list of messages. Allow a keyword validator: :allow-blank. Accepts a blank value. If not blank, validate." ;; I wanted this to be part of clavier, but well. ;; https://github.com/mmontone/clavier/pull/10 (let ((messages nil) (valid t)) (loop for validator in validators if (and (eql :allow-blank validator) (str:blankp object)) return t else do (unless (symbolp validator) (multiple-value-bind (status message) (clavier:validate validator object :error-p nil) (unless status (setf valid nil)) (when message (push message messages))))) (values valid (reverse (uiop:ensure-list messages)))))
  • Favorite user input and validation library?
    5 projects | /r/Common_Lisp | 28 May 2022
    There's also clavier: https://github.com/mmontone/clavier (but didn't try it)

cl-forms

Posts with mentions or reviews of cl-forms. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-28.

What are some alternatives?

When comparing clavier and cl-forms you can also consider the following projects:

duologue - High level user interaction library for Common Lisp

restas-simple-auth - Simple RESTAS-plugin for user registration and authentication

clog - CLOG - The Common Lisp Omnificent GUI

red-light-green-light - A git-centric policy management and enforcement tool designed to accelerate your CI/CD pipelines.

clasp - clasp Common Lisp environment

ironclad - A cryptographic toolkit written in Common Lisp

medley - The main repo for the Medley Interlisp project. Wiki, Issues are here. Other repositories include maiko (the VM implementation) and Interlisp.github.io (web site sources)

mito-auth - User authorization for Mito classes.

hunchentoot-auth

mito-email-auth - Helper to authenticate website's users by sending them unique code by email.