How can I do web programming with Lisp or Scheme?

后端 未结 14 826
遇见更好的自我
遇见更好的自我 2021-01-29 18:35

I usually write web apps in PHP, Ruby or Perl. I am starting the study of Scheme and I want to try some web project with this language. But I can\'t find what is the best enviro

14条回答
  •  失恋的感觉
    2021-01-29 18:56

    Gambit Scheme has its own solution to web apps as well. It uses the Spork framework, based o the Black Hole module system (both by Per Eckerdal).

    Andrew Whaley has an initial tutorial on how to get Gambit, Black Hole and Spork running a web app under Apache using mod_proxy. You might want to take a look at that.

    On a (possibly) related note, Gambit will also compile your stuff to C and then to an executable, if you feel so inclined.

提交回复
热议问题