Developing Web Applications with Haskell
docs.google.com
Developing Web Applications with Haskell
1–10 of 33 posts
Re: Developing Web Applications with Haskell
#2That is a good summary of the options for Haskell web development. The author of this slide deck also wrote "Beginning Haskell." I bought this book and like it. That said I have an addiction to buying Haskell books :-) Personally, I use Yesod for complicated apps, otherwise Spock.
Re: Developing Web Applications with Haskell
#3I'd like to see something like this, but with JSON-based APIs instead of HTML templating.
Re: Developing Web Applications with Haskell
#4I'd like to see something like this, but with JSON-based APIs instead of HTML templating.
"aeson" is the go-to library for producing and parsing JSON in Haskell.
Re: Developing Web Applications with Haskell
#5I'd like to see something like this, but with JSON-based APIs instead of HTML templating.
You'd like servant:
Re: Developing Web Applications with Haskell
#6Does it support a "React" style of building web applications?
Re: Developing Web Applications with Haskell
#7It looks like a good start. I've been trying to learn Haskell and F Sharp and other functional languages and always wondered if there was a web option.
Re: Developing Web Applications with Haskell
#8Does it support a "React" style of building web applications?
react-haskell enables that
http://begriffs.com/posts/2015-01-12-reactjs-in-haskell.html
Re: Developing Web Applications with Haskell
#9I'd like to see something like this, but with JSON-based APIs instead of HTML templating.
You should check out PostgREST, a tool to expose Postres tables through a JSON APIs: https://github.com/begriffs/postgrest
Re: Developing Web Applications with Haskell
#10I'd like to see something like this, but with JSON-based APIs instead of HTML templating.
thoughtbot's carnival is a good example of a JSON API written with Yesod: https://github.com/thoughtbot/carnival