Hoogle Search

Within LTS Haskell 24.15 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. scottyAppT :: (Monad m, Monad n) => Options -> (m Response -> IO Response) -> ScottyT m () -> n Application

    scotty Web.Scotty.Trans.Strict

    Turn a scotty application into a WAI Application, which can be run with any WAI handler. NB: scottyApp === scottyAppT id

  2. scottyOptsT :: (Monad m, MonadIO n) => Options -> (m Response -> IO Response) -> ScottyT m () -> n ()

    scotty Web.Scotty.Trans.Strict

    Run a scotty application using the warp server, passing extra options. NB: scottyOpts opts === scottyOptsT opts id

  3. scottySocketT :: (Monad m, MonadIO n) => Options -> Socket -> (m Response -> IO Response) -> ScottyT m () -> n ()

    scotty Web.Scotty.Trans.Strict

    Run a scotty application using the warp server, passing extra options, and listening on the provided socket. NB: scottySocket opts sock === scottySocketT opts sock id

  4. scottyT :: (Monad m, MonadIO n) => Port -> (m Response -> IO Response) -> ScottyT m () -> n ()

    scotty Web.Scotty.Trans.Strict

    Run a scotty application using the warp server. NB: scotty p === scottyT p id

  5. data ScottyException

    scotty Web.Scotty

    Thrown e.g. when a request is too large

  6. type ScottyM = ScottyT IO

    scotty Web.Scotty

    No documentation available.

  7. data ScottyState (m :: Type -> Type)

    scotty Web.Scotty

    No documentation available.

  8. data ScottyException

    scotty Web.Scotty.Internal.Types

    Thrown e.g. when a request is too large

  9. data ScottyResponse

    scotty Web.Scotty.Internal.Types

    No documentation available.

  10. data ScottyState (m :: Type -> Type)

    scotty Web.Scotty.Internal.Types

    No documentation available.

Page 2 of many | Previous | Next