haskell-language-server VS hie-bios

Compare haskell-language-server vs hie-bios and see what are their differences.

haskell-language-server

Official haskell ide support via language server (LSP). Successor of ghcide & haskell-ide-engine. (by haskell)

hie-bios

Set up a GHC API session for various Haskell Projects (by haskell)
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
haskell-language-server hie-bios
112 5
2,645 179
0.8% 0.0%
9.6 6.5
7 days ago about 2 months ago
Haskell Haskell
Apache License 2.0 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.

haskell-language-server

Posts with mentions or reviews of haskell-language-server. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-09-12.
  • Why Haskell?
    15 projects | news.ycombinator.com | 12 Sep 2024
    The Haskell Language Server (LSP) always needs help: https://github.com/haskell/haskell-language-server/issues?q=...

    As for GHC compile times... hard to say. The compiler does do a lot of things. Type checking and inference of a complex type system, lots of optimizations etc. I don't think it's just some bug/inefficient implementation, bc. resources have been poured into optimizations and still are. But there are certainly ways to improve speed.

  • Why Does Everyone Hate Haskell, Jazz, and Pure Math?
    4 projects | news.ycombinator.com | 6 Aug 2024
    > Haskell has an endemic problem where way too many development resources are put into fringe parts of GHC

    There has been an incredibly amount of work put into all the things you mentioned over the last decade, which it sounds like you're unfamiliar with. https://github.com/haskell/haskell-language-server in particular is a pleasure to use in my experience. Package management is far from perfect, but it's always being worked on and I'll take it over anything in Python or the Node.js ecosystems any day. Developer experience has improved a lot since I started using the language and this is an area that the community and leadership absolutely cares about--I'd be surprised at anyone who spent time reading discussions in https://github.com/ghc-proposals/ghc-proposals or https://discourse.haskell.org/ or etc. would agree with you.

    > Haskell has the worst support for records of all its peers. SML, OCaml, F# all have better records.

    > Without good records it’s unreasonably hard to write large software projects.

    > AFAIK it’s hard to retrofit ML-style structural subtyped records onto Haskell, because the type system is designed around that not being possible.

    Haskell is not ML, and while Haskell records are weak they are not what is preventing people from writing big projects in Haskell. There is much more to the language than records. But I said this in my previous comment.

    Nothing you've written resonates with me, and I've written Haskell and PureScript professionally as well as Java and JS along with a bunch of other languages that haven't been mentioned. I'm also actively working on an open source project in my spare time with thousands of lines of Haskell and PureScript code (https://github.com/ddellacosta/automation-service), not to mention a half dozen other random half-done projects and contributions I've made to other open source libraries and applications. What have you written in Haskell that has made you dislike it so much?

    > Talk is cheap.

    Yes it is.

  • Revisiting Haskell after 10 years
    8 projects | dev.to | 15 Jan 2024
    The advent of language server protocol made possible the creation of HLS (Haskell Language Server), and there are plugins for many editors, such as vscode-haskell, that allow you to have auto-complete, auto-import, and automatic function signatures—also available to your editor of choice. The whole feedback loop of editing, compiling, and running is greatly improved.
  • VSCode Haskell extension not working
    1 project | /r/haskellquestions | 5 Oct 2023
    HLS 2.3.0.0 is currently broken on Windows.
  • Haskellers who moved to Rust: What has been your experience?
    2 projects | /r/rust | 12 Jul 2023
    The Haskell community has been focusing on tooling and IDE support in the last several years. Haskell-Language-Server is a huge improvment, so the experience is probably much better than you remember, but it'll still be a while before it catches up with Rust.
  • A semester of Haskell-language-server: an internship report
    1 project | news.ycombinator.com | 23 May 2023
  • HLS 2.0.0.0 is out
    1 project | /r/haskell_jp | 19 May 2023
    2 projects | /r/haskell | 19 May 2023
  • Static-ls - a low memory Haskell language server based on hiedb and hiefiles
    4 projects | /r/haskell | 8 Apr 2023
    static-ls is a low memory language server for Haskell that serves as an alternative to (hls)[https://github.com/haskell/haskell-language-server] with less functionality by using statically generated information. It is intended for (Highly recommend hls instead if you aren't having these issues):
  • HLS 1.10.0.0 is out
    1 project | /r/haskell | 31 Mar 2023

hie-bios

Posts with mentions or reviews of hie-bios. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-02.
  • A working example for Reflex/Obsidian + HLS?
    2 projects | /r/haskell | 2 Mar 2022
    You're likely going to have to set up a hie-bios file in an hie.yaml file. More info here: https://github.com/haskell/hie-bios
  • I was finally able to set up Neovim lspconfig with Haskell Language Server on MacOS!
    2 projects | /r/haskell | 13 Sep 2021
    Look here: hie-bios (its the library used by haskell-language-server to get to know your project better, iirc).
  • Portable Haskell with VS Code?
    2 projects | /r/haskell | 28 May 2021
    Yeah the same happened to me with previous versions of the Haskell IDE Engine that used Stack, so I ended up with several snapshots under \~/.stack that took a lot of space. Nowadays I just install HLS, Cabal and a single HLS-supported GHC with ghcup. It's a huge difference. I think there is a Windows-supported equivalent of ghcup, but I have not used it. If you also have Stack installed, remember that you can place a [`hie.yaml`](https://github.com/mpickering/hie-bios#explicit-configuration) file in your project root that can [force HLS to use cabal](https://github.com/mpickering/hie-bios#cabal) instead of stack in your project (this was needed last time I checked, complex configurations would need tuning this file a bit, though).
  • Is almost everyone using VS Code now for Haskell?
    6 projects | /r/haskell | 20 Mar 2021
    You can provide an alternative stack.yaml to HLS, with the specific configuration for the ide, although you have to write down an explicit hie.yaml file, take a look to https://github.com/mpickering/hie-bios#stack
  • vscode-ghc-simple: Requesting feedback for vgs-bios
    2 projects | /r/haskell | 15 Mar 2021
    Please consider testing dev builds with the WIP new vgs-bios feature, inspired by the amazing hie-bios. It reads your project hie.yaml and supports multi-component/multi-package projects.

What are some alternatives?

When comparing haskell-language-server and hie-bios you can also consider the following projects:

coc.nvim - Nodejs extension host for vim & neovim, load extensions like VSCode and host language servers.

ghcide - A library for building Haskell IDE tooling

neovim - Vim-fork focused on extensibility and usability

vscode-ghc-simple - Simple GHC (Haskell) integration for VSCode

lsp-mode - Emacs client/library for the Language Server Protocol

hie-core - The Daml smart contract language

ormolu - A formatter for Haskell source code

haskell-emacs - Write Emacs extensions in Haskell

vscode-haskell - VS Code extension for Haskell, powered by haskell-language-server

marvin - The paranoid bot (framework)

lsp-haskell - lsp-mode :heart: haskell

hsenv - Virtual Haskell Environment builder

InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured