Re: [Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-26 Thread dag.odenh...@gmail.com
On 21 March 2012 03:45, serialhex serial...@gmail.com wrote: i'm looking for something lightweight, that dosnt need it's own server, can easily run on cgi on an apache with minimal work, and dosn't have many dependancies. i was looking at yesod, but it is bigger than i need for my site (at

Re: [Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-26 Thread aditya bhargava
Here's another Miku / Sinatra-like framework that looks interesting: https://github.com/xich/scotty From the README: My issue with miku is that it uses the Hack2 interface instead of WAI (they are analogous, but the latter seems to have more traction), and that it is written using a custom

Re: [Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-23 Thread Mark Wotton
On Fri, Mar 23, 2012 at 10:37 AM, Conrad Parker con...@metadecks.orgwrote: On 23 March 2012 04:55, Mark Wotton mwot...@gmail.com wrote: Try Miku. https://github.com/nfjinjing/miku some oddnesses around redefining (-) (I guess Jinjing Wang doesn't like the way $ looks?) but you don't

Re: [Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-22 Thread Mark Wotton
Try Miku. https://github.com/nfjinjing/miku some oddnesses around redefining (-) (I guess Jinjing Wang doesn't like the way $ looks?) but you don't need to import the Air.Light stuff. Otherwise more or less a straight port of sinatra, and you can run it on heroku... mark On Wed, Mar 21, 2012

Re: [Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-22 Thread Conrad Parker
On 23 March 2012 04:55, Mark Wotton mwot...@gmail.com wrote: Try Miku. https://github.com/nfjinjing/miku some oddnesses around redefining (-) (I guess Jinjing Wang doesn't like the way $ looks?) but you don't need to import the Air.Light stuff. Otherwise more or less a straight port of

Re: [Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-21 Thread Vo Minh Thu
Le 21 mars 2012 03:45, serialhex serial...@gmail.com a écrit : i'm looking for something lightweight, that dosnt need it's own server, can easily run on cgi on an apache with minimal work, and dosn't have many dependancies. i was looking at yesod, but it is bigger than i need for my site (at

[Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-21 Thread Greg Weber
WAI has CGI handlers, so you should be able to deploy a WAI-based framework like Yesod to CGI. If you want a simple framework, you can just use WAI directly. Scotty is a WAI framework that mimics Sinatra. Greg Weber ___ Haskell-Cafe mailing list

Re: [Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-21 Thread Simon Hengel
If you want a simple framework, you can just use WAI directly. If you want to give that a try, make sure to have a look at the README. https://github.com/yesodweb/wai/blob/master/wai/README.md Cheers, Simon ___ Haskell-Cafe mailing list

[Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-20 Thread serialhex
i'm looking for something lightweight, that dosnt need it's own server, can easily run on cgi on an apache with minimal work, and dosn't have many dependancies. i was looking at yesod, but it is bigger than i need for my site (at this point) and would take too much work to get running on my