newLISP Fan Club

Forum => newLISP in the real world => Topic started by: jopython on October 02, 2016, 03:17:05 PM

Title: compojure like http routes for newlisp?
Post by: jopython on October 02, 2016, 03:17:05 PM
I am trying to run newlisp behind inetd in -http mode with http-conf.lsp example provided in the manual.

The example provided in the manual is very limited and it exposes the entire newlisp interpreter to the http port which I find a security issue. I wish we had clojure compojure  like routes DSL for  newlisp.



(defroutes home-routes
  (GET "/" [] (home-page))
  (GET "/hello/:name" [name] (str  "Hello " name))
  (GET "/about" [] (about-page)))


Nice thing about compojure is that it exposes only these routes and nothing but these routes. Is there a DSL similar to this for newlisp and easy to use?
Title: Re: compojure like http routes for newlisp?
Post by: TedWalther on October 03, 2016, 05:55:09 PM
If someone codes one up, I'll use it.



Although I'm more interested in FastCGI support in newlisp, then I can use newlisp to power a website using OpenBSD's small/secure new webserver.  As well as Apache/nginx and all the other mainstream web servers.