yesod

A RESTful Haskell web framework built on WAI.

  • 所有者: yesodweb/yesod
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Build Status

Yesod Web Framework

An advanced web framework using the Haskell programming language. Featuring:

  • safety & security guaranteed at compile time
  • developer productivity: tools for all your basic web development needs
  • raw performance
    • fast, compiled code
    • techniques for constant-space memory consumption
  • asynchronous IO
    • this is built in to the Haskell programming language (like Erlang)

Getting Started

Learn more about Yesod on its main website. If you
want to get started using Yesod, we strongly recommend the quick start
guide
, based on the Haskell build
tool stack
.

Here's a minimal example!

{-# LANGUAGE OverloadedStrings, QuasiQuotes, TemplateHaskell, TypeFamilies #-}

import Yesod

data App = App -- Put your config, database connection pool, etc. in here.

-- Derive routes and instances for App.
mkYesod "App" [parseRoutes, / HomeR GET, ]

instance Yesod App -- Methods in here can be overridden as needed.

-- The handler for the GET request at /, corresponds to HomeR.
getHomeR :: Handler Html
getHomeR = defaultLayout [whamlet, Hello World!, ]

main :: IO ()
main = warp 3000 App

To read about each of the concepts in use above (routing, handlers,
linking, JSON), in detail, visit
Basics in the Yesod book.

Hacking on Yesod

Yesod consists mostly of four repositories:

git clone --recurse-submodules http://github.com/yesodweb/shakespeare
git clone --recurse-submodules http://github.com/yesodweb/persistent
git clone --recurse-submodules http://github.com/yesodweb/wai
git clone --recurse-submodules http://github.com/yesodweb/yesod

Each repository can be built with stack build.

主要指标

概览
名称与所有者yesodweb/yesod
主编程语言Haskell
编程语言Haskell (语言数: 6)
平台
许可证MIT License
所有者活动
创建于2009-06-27 22:54:51
推送于2025-06-17 15:34:13
最后一次提交2025-06-17 17:34:13
发布数895
最新版本名称yesod-test-1.6.16 (发布于 2023-09-22 07:30:05)
第一版名称yesod/0.0.0 (发布于 )
用户参与
星数2.7k
关注者数95
派生数374
提交数5.2k
已启用问题?
问题数1077
打开的问题数104
拉请求数642
打开的拉请求数14
关闭的拉请求数142
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?