Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 1.04 KB

WAI-web-frameworks.md

File metadata and controls

15 lines (9 loc) · 1.04 KB

Yesod works on top of WAI, the Web Application Interface. This allows the user to deploy to different targets with minimal (if any) changes, but more importantly lets different web frameworks share code, even when they have very different aims.

Yesod does not attempt to revolutionize the web framework concept. Instead it applies Haskell's strengths to normal REST and MVC style web development. In contrast, there are new web frameworks with very different approaches. They all have examples of using WAI and Hamlet.

Here is another WAI based framework.

  • Scotty - Sinatra (simple Ruby web framework) inspired. Consider using it if you have a simple site and no interest in Yesod's Widgets and various other features.

Adapters