boots: IoC Monad in Haskell

[ application, factory, ioc, library, mit, monad ] [ Propose Tags ]

Monad used to encapsulate components, similiar to an IoC container.


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0, 0.0.1, 0.0.2, 0.0.3, 0.0.100, 0.1, 0.1.1, 0.2, 0.2.0.1 (info)
Change log CHANGELOG.md
Dependencies base (>=4.10 && <5), exceptions (>=0.10.2 && <0.11), mtl (>=2.2.2 && <2.3) [details]
License MIT
Copyright 2019 Daniel YU
Author Daniel YU
Maintainer leptonyu@gmail.com
Revised Revision 1 made by leptonyu at 2019-09-05T03:18:55Z
Category Library, Application, Monad, Factory, IoC
Home page https://github.com/leptonyu/boots#readme
Uploaded by leptonyu at 2019-08-28T13:10:15Z
Distributions
Reverse Dependencies 3 direct, 0 indirect [details]
Downloads 2777 total (26 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-08-28 [all 1 reports]

Readme for boots-0.2

[back to package description]

boots

Hackage Build stackage LTS package stackage Nightly package MIT license Hackage-Deps

IoC Monad in Haskell.

Packages based on boots

  • Hackage Factory for quickly building an application.
  • Hackage Factory for quickly building a web application.
  • Hackage Factory for quickly building a microservice.

Motivation

Simplify to create an application in Haskell.

When we decide to create an application using Haskell. We may need using configurations, loggers as basic functions. If this application needs storages, caches, etc., then we have to weaving the management of connection of these facilities into the application. Connections need to be created before and be destroyed after using them. There is a common strategy to manage connections, that is using Control.Monad.Cont. Then we can encapsulate the management of connections separately. For example, we can write a database factory Factory m cxt DBConnection, which can manage the database connections in monad m with context cxt. Context cxt may be requested for configurations or logging functions. When all the components of application are encapsulated by plugins, then building an application will be simplified.

A Project Use boots to Build

Refer to 鬼谷子