ghcid VS niv

Compare ghcid vs niv and see what are their differences.

ghcid

Very low feature GHCi based IDE (by ndmitchell)

niv

Easy dependency management for Nix projects (by nmattia)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
ghcid niv
12 16
1,120 1,449
- -
4.0 6.3
about 2 months ago about 1 month ago
Haskell Haskell
BSD 3-clause "New" or "Revised" License MIT License
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.

ghcid

Posts with mentions or reviews of ghcid. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-08.
  • Anyone know the best way to use haskell for arch linux?
    1 project | /r/haskell | 16 Aug 2023
    You can use ghcid. It compiles the code, and shows if there are any errors as you save your file. Have two terminals. One for editing your file...other one with ghcid ($ ghcid path/to/filename.hs). Right click on the ghcid terminal and click `always on top`. That way, It will be always visible as you are typing and saving code.
  • Static-ls - a low memory Haskell language server based on hiedb and hiefiles
    4 projects | /r/haskell | 8 Apr 2023
    With a combination of ghcid, an hiedb filewatcher and the -fdefer-type-errors flag you can get pretty solid IDE behavior. Currently only ghc 9.4.4 is supported but happy to personally help people set this up if interested!
  • What's the best Editor+Tests experience we can get with Haskell?
    1 project | /r/haskell | 21 Sep 2022
    With an editor integration, you could rig it up to where you could right-click on a Spec, choose "Run spec" from a context menu, and have your editor add that comment to and save dev.hs. Another editor integration could read and parse the contents of ghcid.txt. We have this already for the compiler output, but it doesn't yet parse the test output. But sans an editor integration, you will still see the test output in the console where Ghcid is running.
  • What's the best way to use a REPL for TDD?
    1 project | /r/haskell | 7 Feb 2022
    Sounds like you want ghcid. You can use it run tests on a successful build, and it will watch files in your project and quick-rebuild when there are changes. There shouldn't be any need to modify your Cabal files or test dependencies.
  • Open source projects for beginners
    7 projects | /r/haskell | 24 Jan 2022
  • TDD for AoC?
    2 projects | /r/adventofcode | 18 Dec 2021
    In addition, for Haskell, I usually have ghcid running, which likewise re-runs on every file change, but gives faster feedback about any type errors than the full compiler, and also is configured to evaluate
  • Automatically reloading ghci when a file changes
    1 project | /r/haskell | 25 Jul 2021
    Have you looked into ghcid? https://github.com/ndmitchell/ghcid
  • Most braindead easy end to end haskell workflow?
    4 projects | /r/haskell | 23 Jul 2021
    VS Code + Haskell extension is usually best, but ghcid is an alternative which is much simpler, easier to set up, less pretty and powerful but still pretty easy and effective to use. Here's a workflow:
  • How to cabal?
    1 project | /r/haskellquestions | 4 Apr 2021
    In general, though, I recommend just looking at the cabal files for various libraries and executables. Something like ghcid is good, since it contains a library, an executable, and a test suite.
  • Fast way to run Haskell script from nvim?
    2 projects | /r/neovim | 1 Mar 2021
    you should also checkout the ghci vim plugin https://github.com/ndmitchell/ghcid/tree/master/plugins/nvim

niv

Posts with mentions or reviews of niv. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-07.
  • NixOS + Haskell best practices circa March 2023
    6 projects | /r/haskell | 7 Mar 2023
    niv
  • Pulling themes from a git project: the nix way?
    1 project | /r/NixOS | 9 Oct 2022
    Flakes work. An alternative is niv which was once popular and provides a good developer experience.
  • What are the biggest Pain Points with NIX? And what makes it worth the pain?
    2 projects | /r/NixOS | 17 Aug 2022
    Essentially you can just think of it as a standardized default.nix/shell.nix with built-in Niv integration.
  • Our Roadmap for Nix
    22 projects | news.ycombinator.com | 7 Aug 2022
    I agree that the FP part is not the only issue. It's that the community feels a bit more academic/I'll fix this for myself in the way that works best for me.

    You can indeed achieve some reproducibility with Docker. It's tricky though, as you'd have to pin exact package versions of software. If you'd `FROM ubuntu:$VERION`, and would run an `apt-get update`, you're not guaranteed to get the same software.

    Nix is like ZFS, as that it breaks the wall between two previously distinct area's. Those being building software, and installing/configuration software on your OS. It's quite different from the snapshot-everything methodology that Docker uses. Yeah, one can split in multi-stage images etc, but than you'll be keeping track of which dependencies need to be moved between the stages yourself, in a manner that cannot be abstracted away, so you're doomed to repeat the same patterns over and over again.

    People also state that LVM + ext3 is more than sufficient compared to the complexity of ZFS. They miss out on the fact on how much more fine grained solutions are possible with ZFS.

    I've used niv [0] before flakes arrived, and am actually still using that instead of flakes. The experimental nature of them has scared me away from them, as I'm not daily involved in this ecosystem at the moment.

    [0] https://github.com/nmattia/niv#niv

  • Simplest way to set up neovim
    5 projects | /r/NixOS | 26 Jun 2022
    You can use something like Niv to manage additional sources. I use it to fetch some Emacs packages, for example ligature.el. Then you update the package using $ niv update.
  • Unstable vs Stable channels
    3 projects | /r/NixOS | 6 Jun 2022
    One thing that made this easier was switching from using Nix channels to explicitly pinning my dependencies with Niv. I honestly never fully understood how channels worked, and it's just much nicer to have everything specified in my Git repo. The exact commit of Nixpkgs that I'm using is in my sources.json file, so "reverting" just means checking out an older commit of my configs from Git then running nixos-rebuild switch. If I were redoing my dotfiles today I'd probably use Nix Flakes rather than Niv, but I suspect that Niv is still an easier option to get started with.
  • Remove unused niv packages
    1 project | /r/NixOS | 5 Feb 2022
    Does someone know of a way to remove unused pinned packages via [niv](https://github.com/nmattia/niv)?
  • How to downgrade single package?
    2 projects | /r/NixOS | 31 Jan 2022
    Pin nixpkgs, and version control it. If you're using flakes, then just version control the flake.lock alongside your configuration. If you're not using flakes, you can use niv to easily pin nipxkgs, at the expense of some boiler plate.
  • Compiling emacs is killing me
    2 projects | /r/NixOS | 22 Oct 2021
  • Ditch Your Version Manager
    18 projects | news.ycombinator.com | 19 Sep 2021
    This... This is laughable. How do I install ruby 2.6.8? Oh, there's no ruby_2_6_8, because of course there isn't. And this could be difference between a secure system and all your base are belong to us.

    And they call this reproducible builds?

    And that's before getting into the ridiculous

    --- start quote ---

    All the software that we installed depends on the specific version of the nixpkgs channel that we installed on our system [whose only version is a commit hash in a git repo]

    --- end quote ---

    So you need an extra tool [2] for, quote, "painless dependencies for Nix projects."

    Yes, sure. I'm definitely ditching my version managers in favor of this tool, that hasn't solved these issues in 18 years of its existence.

    [1] https://search.nixos.org/packages?channel=21.05&from=0&size=...

    [2] https://github.com/nmattia/niv

What are some alternatives?

When comparing ghcid and niv you can also consider the following projects:

ghci-ng

leksah - Haskell IDE

stack - The Haskell Tool Stack

update-nix-fetchgit - A program to automatically update fetchgit values in Nix expressions

ghcide - A library for building Haskell IDE tooling

elm-make

hlint - Haskell source code suggestions

hpc-threshold - Small utility for validating whether HPC result is above defined thresholds

castle - A tool to manage shared cabal-install sandboxes.

nixery - Container registry which transparently builds images using the Nix package manager. Canonical repository is https://cs.tvl.fyi/depot/-/tree/tools/nixery

hadolint - Dockerfile linter, validate inline bash, written in Haskell

ihaskell - A Haskell kernel for the Jupyter project.