Git Product home page Git Product logo

iris-1's Introduction

iris

GitHub CI Hackage MPL-2.0 license

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.

Iris changing her workflow and hair colour depending on the time of day.

โ„น๏ธ 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.

Goals

Iris development is guided by the following principles:

  1. Support Command Line Interface Guidelines. Features or changes that violate these guidelines are not accepted in the project.

  2. Beginner-friendliess. 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.

  3. 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.

  4. 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.

๐Ÿงฑ Iris focuses solely on CLI applications. If you're interested in building TUI app with Haskell, check out brick.

Features

CLI apps built with Iris offer the following features for end users:

  • Automatic detection of colouring support in the terminal
  • Ability to check required external tools if you need e.g. curl or git
  • Support for standard CLI options out-of-the-box:
    • --help
    • --version
    • --numeric-version: helpful for detecting required tools versions
    • --no-input: for disabling all interactive features
  • Utilities to open files in a browser

How to use?

iris is compatible with the following GHC versions - supported versions

In order to start using iris in your project, you will need to set it up with these steps:

  1. 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:

    build-depends:
      , base ^>= LATEST_SUPPORTED_BASE
      , iris ^>= LATEST_VERSION
  2. To use this package, refer to the below example.

    {-# 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

For contributors

Check CONTRIBUTING.md for contributing guidelines.

Development

To build the project and run the tests locally, you can use either cabal or stack.

See the First time section if you don't have Haskell development environment locally.

Cabal

Build the project:

cabal build all

Run all unit tests:

cabal test --enable-tests --test-show-details=direct

Stack

Build the project:

stack build --test --no-run-tests

Run all unit tests:

stack test

First time

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 8.10.7
ghcup set     ghc 8.10.7
ghcup install cabal 3.6.2.0

If you are using Linux or macOS, you may find ghcup tui command a more attractive option.

iris-1's People

Contributors

charrsky avatar chshersh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.