Popularity
7.0
Declining
Activity
3.4
-
10
9
3

Monthly Downloads: 91
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Web     Servant    
Latest version: v0.9

servant-blaze alternatives and similar packages

Based on the "servant" category.
Alternatively, view servant-blaze alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of servant-blaze or a related project?

Add another 'servant' Package

README

servant-blaze - Blaze-html support for servant

servant

This package allows you to use blaze-html to serve html pages in your servant APIs. More specifically, it exports a HTML datatype with the correct MimeRender instances so that you can write type API = Get '[HTML] User for example.

Minimal example:

{-# LANGUAGE OverloadedStrings, DataKinds #-}

module Test where

import           Servant
import           Servant.HTML.Blaze
import qualified Text.Blaze.Html5   as H

type API = Get '[HTML] Homepage
type Homepage = H.Html

server :: Server API
server = return myHome

myHome :: Homepage
myHome = H.docTypeHtml $ do
    H.head $ do
             H.title "Live to serve"
    H.body $ do
             H.h1 "Templates!"
             H.p "This will be type-checked, rendered and served"