Lens-based HTTP toolkit.
This package provides the core functionality of the Nero
HTTP toolkit.
Check the README for a more detailed explanation.
Nero
A
Lens
-based HTTP toolkit.
:warning: The following is a declaration of intentions. Expect wild changes in the API
until the 1.0.0
release.
Not a framework: it may be considered an anti-framework, micro-framework, or just a "library", in the sense that it provides a set of utilities for building custom web applications instead of creating applications from user provided code following certain structure.
Pay for what you eat: instead of coming with everything and the kitchen sink, it provides the bare minimum to write applications with minimum implicit behavior. At the same time, it offers diverse paths to grow with you as applications become more complex.
Unopinonated: there is no preferred routing method, HTML templating library, session management, web server or database adapter. It comes with some defaults to alleviate the paradox of choice, but most components are expected to be easily swapped in and out either with plain 3rd party Haskell libraries or by writing thin adapters around them.
Power of Haskell and
Lens
: theLens
-based API enables a style familiar to imperative programmersLens
while being purely functional under the hood. Veteran Haskellers can take advantage of the powerful lens combinators.
Example
{-# LANGUAGE OverloadedStrings #-}
import Nero.Prelude
import Nero (Request, Response, _GET, prefixed, ok)
import Nero.Warp (serve) -- from `nero-warp`
app :: Request -> Maybe Response
app request = request ^? _GET . prefixed "/hello/" <&> \name ->
ok $ "<h1>Hello " <> name <> "</h1>"
main :: IO ()
main = serve 8080 app
More examples in the examples directory.