[racket-users] Web framework in racket

2015-05-21 Thread Vishesh Yadav
Hi! I'm working on racket web server to implement a basic web app. I found myself doing lots of low level stuff like cookie handling, session management etc almost from scratch. I was thinking to abstract all these stuff into some small library maybe, but before that I wanted to ask if there

Re: [racket-users] Web framework in racket

2015-05-21 Thread Asumu Takikawa
On 2015-05-21 15:36:56 -0700, Vishesh Yadav wrote: I'm working on racket web server to implement a basic web app. I found myself doing lots of low level stuff like cookie handling, session management etc almost from scratch. I was thinking to abstract all these stuff into some small library

Re: [racket-users] Web framework in racket

2015-05-21 Thread Sam Tobin-Hochstadt
There's also the much-older leftparen: https://github.com/vegashacker/leftparen/ Sam On Thu, May 21, 2015 at 9:44 PM, Asumu Takikawa as...@ccs.neu.edu wrote: On 2015-05-21 15:36:56 -0700, Vishesh Yadav wrote: I'm working on racket web server to implement a basic web app. I found myself doing