ihaskell
A Haskell kernel for the Jupyter project. (by IHaskell)
ghcid
Very low feature GHCi based IDE (by ndmitchell)
Our great sponsors
ihaskell | ghcid | |
---|---|---|
5 | 9 | |
2,355 | 1,032 | |
0.6% | - | |
8.7 | 6.3 | |
14 days ago | about 2 months ago | |
Jupyter Notebook | Haskell | |
MIT License | BSD 3-clause "New" or "Revised" 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.
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.
ihaskell
Posts with mentions or reviews of ihaskell.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-08-16.
-
Script to run ihaskell in Docker
More info: https://github.com/gibiansky/IHaskell/issues/1251
-
How to use Matplotlib for Haskell in IHaskell
I'm stymied trying to import a package. It's Graphics.Matplotlib. (See here.) I'm wanting it for my IHaskell, but when I add it to the IHaskell stack.yaml
That looks like a generic front-end error for when the back-end is unavailable, the back-end error should be more informative, but I don't know where exactly you can find it. At this point it might make sense to open an issue on the issue tracker of IHaskell, they will be able to give you more useful answers.
-
Newbie: IHaskell + Rasterific?
curl -sSL https://get.haskellstack.org/ | sh git clone https://github.com/gibiansky/IHaskell cd IHaskell pip3 install -r requirements.txt stack install --fast ihaskell install --stack jupyter labextension install jupyterlab-ihaskell # did not work stack exec jupyter -- notebook
I haven't actually used IHaskell, however, the png file is presumably created in whatever the working directory is when the script is running. The IHaskell wiki says:
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 2022-01-24.
-
What's the best way to use a REPL for TDD?
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
-
TDD for AoC?
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
Have you looked into ghcid? https://github.com/ndmitchell/ghcid
-
Most braindead easy end to end haskell workflow?
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?
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?
you should also checkout the ghci vim plugin https://github.com/ndmitchell/ghcid/tree/master/plugins/nvim
-
Can't get things to work. It is normal to learn haskell with plain vim?
I just went through the same thing. I settled on using stack and ghcid. All it does is recompile on any change to source code so you at least get lightning fast feedback. Both stack and ghcid have been easy to install and use so far.
-
Why Clojure?
Have you tried out ghcid? It basically just runs ghci on your program every time you save, and gives an updated list of errors and warnings. Not interactive in the sense that you don't manually test your functions with it, but like 95% of debugging in Haskell is just fixing errors at compilation time. I find it to be a very nice developer experience. Just need a text editor and a terminal with ghcid open and you get immediate feedback as you program.
What are some alternatives?
When comparing ihaskell and ghcid you can also consider the following projects:
stack - The Haskell Tool Stack
ghcide - A library for building Haskell IDE tooling
ghci-ng
hoogle - Haskell API search engine
leksah - Haskell IDE
hlint - Haskell source code suggestions
reflex-ghci - Run GHCi from within a Reflex FRP application and interact with it using a functional reactive interface.
haddock - Haskell Documentation Tool
shake - Shake build system
happy - The Happy parser generator for Haskell
hadolint - Dockerfile linter, validate inline bash, written in Haskell