Popularity
8.5
Stable
Activity
0.0
Stable
68
5
4
Monthly Downloads: 10
Programming language: Haskell
License: MIT License
Tags:
Development
Latest version: v1.14.0
hesh alternatives and similar packages
Based on the "Development" category.
Alternatively, view hesh alternatives based on common mentions on social networks and blogs.
-
criterion
A powerful but simple library for measuring the performance of Haskell code. -
stgi
A user-centric visual STG implementation to help understand GHC/Haskell's execution model. -
structured-haskell-mode
Structured editing minor mode for Haskell in Emacs -
cabal-install-parsers
Scripts and instructions for using CI services (e.g. Travis CI or Appveyor) with multiple GHC configurations -
inline-c
Write Haskell source files including C code inline. No FFI required. -
inline-java
Haskell/Java interop via inline Java code in Haskell modules. -
fourmolu
A fourk of ormolu that uses four space indentation and allows arbitrary configuration. Don't like it? PRs welcome! -
lambdabot-core
A friendly IRC bot and apprentice coder, written in Haskell. -
scion
OLD, DEPRECATED: Use this instead https://github.com/haskell/haskell-ide-engine
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
Do you think we are missing an alternative of hesh or a related project?
Popular Comparisons
README
Hesh - The Haskell-Extensible Shell
Hesh makes writing scripts in Haskell easier. Here's an example:
#!/usr/bin/env hesh
-- Backup a PostgreSQL database to an encrypted file.
main = do
args <- System.Environment.getArgs
case args of
[database] -> do
today <- $(date +%Y-%m-%d)
let file = database ++ "-" ++ today ++ ".sql.gpg"
$(pg_dump $database) |> $(gpg -e -r $EMAIL) /> file
_ -> do
progName <- System.Environment.getProgName
$(echo "Usage: $progName <database>") /> "/dev/stderr"
For more details, see the [manual](manual/manual.pdf).