Haskell CLI framework. See README.md for more details.
[Index] [Quick Jump]
Package maintainers
For package maintainers and hackage trustees
Candidates
Iris is a Haskell framework for building CLI applications that follow Command Line Interface Guidelines.
🌈 Iris (/ˈaɪrɪs/) is a Greek goddess associated with communication, messages, the rainbow, and new endeavors.
ℹ️ DISCLAIMER #1: Currently, Iris is in experimental phase and mostly for early adopters. It may lack documentation or have significant breaking changes. We appreciate anyone's help in improving the documentation! At the same time, the maintainers will strive to provide helpful migration guides.
ℹ️ DISCLAIMER #2: Iris is developed and maintained in free time by volunteers. The development may continue for decades or may stop tomorrow. You can use GitHub Sponsorship to support the development of this project.
Iris development is guided by the following principles:
Support Command Line Interface Guidelines. Features or changes that violate these guidelines are not accepted in the project.
Beginner-friendliness. Haskell beginners should be able to build CLI applications with Iris. Hence, the implementation of Iris API that uses less fancy Haskell features are preferred. When the complexity is justified, the cost of introducing this extra complexity should be mitigated by having better documentation.
Reasonable batteries-included. Iris is not trying to be minimalistic as possible, it strives to provide out-of-the-box solutions for most common problems. But at the same time, we don't want to impose unnecessary heavy dependencies.
Excellent documentation. Iris documentation should be as helpful as possible in using the framework.
NOTE: Currently, Iris may lack documentation but there's an ongoing effort to improve the situation.
Single-line access. Iris is designed for qualified imports, and you should be able to get all the needed API by writing a single import line:
import qualified Iris
🧱 Iris focuses solely on CLI applications. If you're interested in building TUI app with Haskell, check out brick.
CLI apps built with Iris offer the following features for end users:
curl
git
--help
--version
--numeric-version
--no-input
--colour=(auto|never|always)
--no-colour
📚 Refer to the complete Iris tutorial for more details and examples of more Iris features.
iris is compatible with the following GHC versions - supported versions
iris
In order to start using iris in your project, you will need to set it up with these steps:
Add the dependency on iris in your project's .cabal file. For this, you should modify the build-depends section according to the below section:
.cabal
build-depends
build-depends: , base ^>= LATEST_SUPPORTED_BASE , iris ^>= LATEST_VERSION
To use this package, refer to the below example.
{-# LANGUAGE DerivingStrategies #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} module Main (main) where import Control.Monad.IO.Class (MonadIO (..)) import qualified Iris newtype App a = App { unApp :: Iris.CliApp () () a } deriving newtype ( Functor , Applicative , Monad , MonadIO ) appSettings :: Iris.CliEnvSettings () () appSettings = Iris.defaultCliEnvSettings { Iris.cliEnvSettingsHeaderDesc = "Iris usage example" , Iris.cliEnvSettingsProgDesc = "A simple 'Hello, world!' utility" } app :: App () app = liftIO $ putStrLn "Hello, world!" main :: IO () main = Iris.runCliApp appSettings $ unApp app
Check CONTRIBUTING.md for contributing guidelines.
To build the project and run the tests locally, you can use either cabal or stack.
cabal
stack
See the First time section if you don't have Haskell development environment locally.
Build the project:
cabal build all
Run all unit tests:
cabal test --enable-tests --test-show-details=direct
stack build --test --no-run-tests
stack test
If this is your first time dealing with Haskell tooling, we recommend using GHCup.
During the installation, GHCup will suggest you installing all the necessary tools. If you have GHCup installed but miss some of the tooling for some reason, type the following commands in the terminal:
ghcup install ghc 9.2.5 ghcup set ghc 9.2.5 ghcup install cabal 3.8.1.0
If you are using Linux or macOS, you may find ghcup tui command a more attractive option.
ghcup tui