Snap is a simple web development framework, written in the Haskell programming language.
4
votes
2answers
58 views
Handling request errors in snap with haskell
I'm currently taking a look at Snap with Haskell. I'm pretty new to Haskell and functional programming in general and am working out the best way to handle errors. Currently I have something like this
...
5
votes
1answer
247 views
HasPostgres instance for IO with Snap framework
I want to write my database access code for a Snap application in a way that makes the queries easy to test from the ghci repl, while also working within the Snap ...