mr-env: A simple way to read environment variables in Haskell

[ library, mit, system ] [ Propose Tags ]

A simple way to read environment variables with fallback values in Haskell.


[Skip to Readme]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.5
Change log CHANGELOG.md
Dependencies base (>=4 && <5) [details]
License MIT
Copyright 2020 Christian Rocha
Author Christian Rocha
Maintainer christian@rocha.is
Category System
Home page https://github.com/meowgorithm/mr-env#readme
Bug tracker https://github.com/meowgorithm/mr-env/issues
Source repo head: git clone https://github.com/meowgorithm/mr-env
Uploaded by meowgorithm at 2022-11-06T01:08:48Z
Distributions NixOS:0.1.0.5
Downloads 1477 total (30 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for mr-env-0.1.0.5

[back to package description]

Mr. Env

build Hackage

A simple way to read environment variables in Haskell.

-- Read environment variables, with defaults
host <- envAsString "HOST" "localhost"
port <- envAsInt "PORT" 8000

Simple Example

Read environment variables with do notation:

import System.Environment.MrEnv ( envAsBool, envAsInt, envAsInteger, envAsString )

main :: IO ()
main = do

    -- Get a string, with a fallback value if nothing is set.
    host <- envAsString "HOST" "localhost"

    -- Get an int. If you need an integer instead you could also use envAsInteger.
    port <- envAsInt "PORT" 8000

    -- Get a boolean. Here we're expecting the environment variable to read
    -- something along the lines of "true", "TRUE", "True", "truE" and so on.
    debug <- envAsBool "DEBUG" False

    putStrLn $
        "Let's connect to "
        ++ host
        ++ " on port "
        ++ show port
        ++ ". Debug mode is "
        ++ if debug then "on" else "off"
        ++ "."

Fancy Example

Read environment variables into a record:

import System.Environment.MrEnv ( envAsBool, envAsInt, envAsInteger, envAsString )

data Config =
    Config { host  :: String
           , port  :: Int
           , debug :: Bool
           }

getConfig :: IO Config
getConfig = Config
    <$> envAsString "HOST" "localhost"
    <*> envAsInt "PORT" 8000
    <*> envAsBool "DEBUG" False

main :: IO ()
main =
    getConfig >>= \conf ->
        putStrLn $
            "Let's connect to "
            ++ host conf
            ++ " on port "
            ++ show $ port conf
            ++ ". Debug mode is "
            ++ if debug conf then "on" else "off"
            ++ "."

We suggest pronouncing <*> brackety-splat (as opposed to ap). In that vein, <$> is brackety-cash.

Authors

License

MIT