New Framework: ningle
In the new update of Quicklisp, new framework which based on Clack is available. It's name is "ningle".
ningle is a super micro web application framework.
;; Make application
(defvar *app* (make-instance 'ningle:<app>))
(setf (ningle:route *app* "/")
"Welcome to ningle!")
(setf (ningle:route *app* "/login" :method :POST)
#'(lambda (params)
(if (authorize (getf params :|username|)
(getf params :|password|))
"Authorized!"
"Failed...Try again.")))
;; http://localhost:5000/
(clack:clackup *app*)That's all of ningle. Pretty small.
I have been thinking that some kind of macros such as "defile-route" aren't always required for routing. ningle proved it.
Are you interested? See it's website for more details.
