Module
Hyper.Middleware
- Package
- purescript-hyper
- Repository
- owickstrom/hyper
#Middleware Source
newtype Middleware m i o a
Constructors
Middleware (i -> m (Tuple a o))
Instances
(Applicative m) => IxMonadMiddleware (Middleware m)
(Monad m) => IxApplicative (Middleware m)
(Monad m) => IxBind (Middleware m)
(Monad m) => IxApply (Middleware m)
(Monad m) => IxFunctor (Middleware m)
(Monad m) => IxMonad (Middleware m)
(Monad m) => Functor (Middleware m i i)
(Monad m) => Apply (Middleware m i i)
(Monad m) => Applicative (Middleware m i i)
(Monad m) => Bind (Middleware m i i)
(Monad m, Applicative m) => Monad (Middleware m i i)
(MonadEffect m) => MonadEffect (Middleware m i i)
(MonadAff m) => MonadAff (Middleware m i i)
#evalMiddleware Source
evalMiddleware :: forall a o i m. Functor m => Middleware m i o a -> i -> m o
#hoistMiddleware Source
hoistMiddleware :: forall a o i g f. (f ~> g) -> Middleware f i o a -> Middleware g i o a
#runMiddleware Source
runMiddleware :: forall a o i m. Middleware m i o a -> i -> m (Tuple a o)
#lift' Source
lift' :: forall a i m. Monad m => m a -> Middleware m i i a
Re-exports from Hyper.Middleware.QualifiedDo
- Modules
- Hyper.
Authentication - Hyper.
Authorization - Hyper.
Conn - Hyper.
ContentNegotiation - Hyper.
Cookies - Hyper.
Form - Hyper.
Form. Urlencoded - Hyper.
Header - Hyper.
Middleware - Hyper.
Middleware. Class - Hyper.
Middleware. QualifiedDo - Hyper.
Node. BasicAuth - Hyper.
Node. FileServer - Hyper.
Node. Server - Hyper.
Node. Server. Options - Hyper.
Node. Session. InMemory - Hyper.
Node. Test - Hyper.
Request - Hyper.
Response - Hyper.
Session - Hyper.
Status - Hyper.
Test. TestServer