DEV Community

Discussion on: Get Started Writing Scheme

Collapse
 
downey profile image
Tim Downey

Is there a web framework/web server for Racket that folks would recommend? This post has gotten me nostalgic.

Collapse
 
dannypsnl profile image
林子篆

Just take a look at awesome-racket, github.com/Junker/routy looks pretty nice. But not sure why they don't map parameters to form like:

(get "/hello/user/:name"
  (lambda (name)
    (format "hi, ~a" name)))

oh my, I already start thinking about how to build that macro get.