haskell-handbook VS cabal-extras

Compare haskell-handbook vs cabal-extras and see what are their differences.

haskell-handbook

Best practices on how to be efficient with Haskell in production (by wasp-lang)

cabal-extras

A tool suite to aid Haskell development using `cabal-install` (by phadej)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
haskell-handbook cabal-extras
9 13
90 78
- -
2.3 6.3
7 months ago 10 days ago
Haskell
- -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

haskell-handbook

Posts with mentions or reviews of haskell-handbook. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-08.

cabal-extras

Posts with mentions or reviews of cabal-extras. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-15.
  • Management of obsolete/orphaned/abandoned packages?
    3 projects | /r/haskell | 15 Aug 2022
    There's also cabal-store-gc from cabal-extras by /u/phadej. But it is still highly experimental.
  • Learning Tidal Fundamentals - nice ground-up intro to TidalCycles by Mark Zadel
    2 projects | /r/haskell | 11 Jan 2022
    I've not completely got my head around it, but I think it's more about bugs and missing features. Tidal users don't work in 'projects' or 'packages', they just want to install a library and then use it in the interpreter. There's a fundamental difference between programming to make something and programming as the end in itself, and cabal doesn't seem to consider the latter use case. It seems the cabal-env prototype does support this (sitting here: https://github.com/phadej/cabal-extras) but it hasn't been merged into cabal itself yet. In the meantime v1-install works pretty well, or at least a lot better than v2-install, which just seems buggy to me, but I'm told I'm just trying to use it the wrong way.
  • [Request for review] Short article on Cabal and Stack and difference between them
    3 projects | /r/haskell | 3 Nov 2021
    Cabal also has some support for offline builds, the cabal-extras project has a bundle command to curl the dependencies into a bundle. https://github.com/phadej/cabal-extras The build artefact aren't necessarily portable across machines.
  • Why did haskell not "succeed"?
    1 project | /r/haskell | 30 Sep 2021
    For cabal, there is https://github.com/phadej/cabal-extras/tree/master/cabal-store-gc
  • Trouble with cabal.
    2 projects | /r/haskell | 5 Sep 2021
    If you want to use cabal (which has various advantages over stack, although as it has access to whole hackage some times requires a bit more thinking) i'd suggest to install cabal-env. Its an experimental tool, written by previous maintainer of cabal. You can simply run cabal install cabal-env to get it. Its part of https://github.com/phadej/cabal-extras. It is what cabal install --lib is supposed to be (and likely will become at some point).
  • Quick Haskell exploration setup on Linux
    1 project | /r/haskell | 21 Jul 2021
    cabal-env from /u/phadej's cabal-extras is working pretty well for me
  • GHC grows self-distinctively.
    1 project | /r/haskell | 10 Jun 2021
    There's cabal-store-gc from cabal-extras which does gc on cabal's store.
  • There is no cabal hell.
    4 projects | /r/haskell | 30 May 2021
    Cabal 3.x and nix-style builds is a partial improvement, however it still suffers its legacy, with some of the most fundamental issues unsolved or even not addressed. For example maintenance of installed packages in long runs, stale or broken packages from previous failed builds impede the workings etc. Suggested fix is usually to wipe-out whole storage and rebuild everything from scratch again sic. Even when you are lucky, like avoiding update of ghc at all costs, with new base breaking almost everything, you'll soon end up with tenths or hundreds of gigabytes wasted disk space and significantly slower operations, with half of whole Hackage packages in its their countless iterations. I would already gave up completely, unless I've run across phadej's cabal-extras, which with some minor fixes save my sanity.
  • Need help with installing modules
    2 projects | /r/haskell | 21 May 2021
    You can install libraries separately with cabal install --lib ..., but the default way is kind of broken. There is an experimental cabal-env tool which works much better, but it is experimental so it is hard to recommend to a beginner.
  • Why is Stack rebuilding everything?
    2 projects | /r/haskell | 29 Mar 2021
    If you are willing to use cabal then the cabal-extra library has some support for offline builds via cabal-bundle https://github.com/phadej/cabal-extras

What are some alternatives?

When comparing haskell-handbook and cabal-extras you can also consider the following projects:

course-plan - 📜 Haskell course info, plan, video lectures, slides

heist - An xhtml-based templating engine, allowing Haskell functions to be bound to XML tags.

strong-path - Strongly typed paths in Haskell

Cabal - Official upstream development repository for Cabal and cabal-install

awesome-haskell - A curated list of amazingly awesome Haskell articles and talks for beginners.

cache-s3

learn-you-a-haskell-notebook - Jupyter adaptation of Learn You a Haskell for Great Good!

stack-clean-old - Tool for cleaning away old Haskell Stack build artifacts

learnyouahaskell - [Moved to: https://github.com/learnyouahaskell/learnyouahaskell.github.io]

sccache - Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage.

Haskell-Guide - Haskell Guide

cabalgc - Selectively remove library packages in cabal store.