clavier

:heavy_check_mark: General purpose validation library for Common Lisp (by mmontone)

Clavier Alternatives

Similar projects and alternatives to clavier based on common topics and language

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better clavier alternative or higher similarity.

clavier reviews and mentions

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)

Stats

Basic clavier repo stats
2
17
6.6
2 months ago

mmontone/clavier is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of clavier is Common Lisp.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com