Popularity
1.9
Stable
Activity
0.0
Stable
1
3
0
Monthly Downloads: 4
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
yesod-alerts alternatives and similar packages
Based on the "yesod" category.
Alternatively, view yesod-alerts alternatives based on common mentions on social networks and blogs.
-
yesod-dsl
A domain specific language and a code generator desined to create RESTful services for managing an RDBMS with Yesod web framework and Persistent. -
yesod-raml
Generate Yesod framework route definitions, documentaiton, mock-handler, and more from your RAML spec. -
yesod-datatables
Routines for implementing server-side processing for DataTables (jQuery grid) in Haskell -
yesod-auth-hmac-keccak
DISCONTINUED. An account authentication plugin for yesod with encrypted token transfer. -
yesod-s3
DISCONTINUED. Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of yesod-alerts or a related project?
README
yesod-alerts
Alert messages for the Yesod framework
Setup
Modify your definition of defaultLayout
in Foundation.hs:
defaultLayout widget = do
...
alerts <- getAlerts
...
Then Include a renderer in default-layout.hamlet
...
#{renderAlertsBootstrap3 alerts}
...
^{widget}
...
Usage
Set alerts from your handlers
getHomeR :: Handler Html
getHomeR = do
...
setAlert (Alert Error "oops")
setSuccessAlert "Yay!"
...
defautlLayout $ do
$(widgetFile "homepage")
Renderers
- Bootstrap v3
- Bootstrap v4
- Foundation v5
- Bulma