Live data from Hacker News

Erlang LS – The Erlang Language Server

erlang-ls.github.io

11–20 of 22 posts

Re: Erlang LS – The Erlang Language Server

#11
post #4

Earlier quoted context omitted.

Yup. Writing a good language server is a big task. It needs to do everything a compiler frontend does, and most languages don't have compilers that are written with this use case in mind. Even if parts of compilers can be used as a library, they are very rarely written in a IDE compatible way, where you need fast, incremental and very resilient parsing and type checking. Typescript was written with IDEs in mind from…

> Yup. Writing a good language server is a big task. Language servers, along with auto formatting and debugging features should now be first-class design decisions for a new language. They shouldn’t be afterthoughts. Something Go for right was the formatted, something that they for wrong was debugability. New languages must make a decision to get these features right from the start.

Sorry, I agree with you, but I don't understand what your point is. This post is about Erlang, which is far from a "new language".

Re: Erlang LS – The Erlang Language Server

#14

If you would like to try it out, you can do it in the browser: https://gitpod.io/#https://github.com/erlang-ls/erlang_ls Zero setup, just login via your GitHub account.

Is there a way to try it without logging in?

I don't think so, unfortunately. Of course you can follow one the installation instructions for one of the available editors. See the "editors" section on the website. Instructions exist for Emacs, VSCode, Vim, etc.

Re: Erlang LS – The Erlang Language Server

#15
post #5

Does it work better than: https://github.com/pgourlain/vscode_erlang ?

I would say the major difference is that "vscode_erlang" is tailored for VS Code, while Erlang LS aims at be editor-agnostic (which is the main point of implementing a Language Server). There are currently some differences in terms of features, too. For example, VS Code has support for a debugger, which Erlang LS does not have (yet). On the other hand, Erlang LS provides support for Dialyzer or Elvis and I'm not sure if those are provided by VS Code Erlang. You can compare the list of available features:

https://github.com/pgourlain/vscode_erlang#erlang-for-visual... https://erlang-ls.github.io/features/

Re: Erlang LS – The Erlang Language Server

#16
post #4
post #3

I'm sure this one is good. But something I've noticed from trying Language Servers for various languages is that a lot of them still need to get over the hump to be an overall help rather than a hinderance. i.e. using a Language Server that's flakey and fouls up often is more annoying than not having one enabled at all.

Yup. Writing a good language server is a big task. It needs to do everything a compiler frontend does, and most languages don't have compilers that are written with this use case in mind. Even if parts of compilers can be used as a library, they are very rarely written in a IDE compatible way, where you need fast, incremental and very resilient parsing and type checking. Typescript was written with IDEs in mind from…

I would say that the API and functionalities provided the Erlang compiler and other syntax tools is quite extensive, compared to other languages. There are a few quirks (some of them addressed in the latest versions of OTP), but generally speaking these libraries are reasonably simple to work with. Erlang LS does most of the work by using standard OTP libraries. The project maintains a fork of the preprocessor dodger provided by OTP (https://github.com/erlang-ls/erlang_ls/blob/master/src/els_d...).

Re: Erlang LS – The Erlang Language Server

#17
post #10
post #7

Earlier quoted context omitted.

It's not erlang-ls, but having used elixir-ls is a pleasure (for the unaware, elixir runs on the erlang vm). Pretty much everything just works as you would expect, and it's a huge timesaver. Erlang and elixir have static typechecking, which is a slow process from the command-line, but it's integrated and "just works" with the ls, and rather refreshingly fast. I even wrote a Zig package for elixir, which plugs into th…

Wait, please explain/expound on using Zig contained within Elixir?! Is this running in or out of proc? What is your dev/edit cycle like? I love Zig, but it doesn't have the security guarantees (yet) of Rust, so I would recommend either running it out of proc or within an in-proc Wasm environment, which actually has other interesting properties. edit https://www.reddit.com/r/elixir/comments/e955jw/zigler_zig_n... http…

You can do what you want :) in practice it's really hard to bring down the erlang VM in zig. I'm also going to experiment with OTP managed OS threads, which I think should allow you to safely run code that panics (but maybe not segfaults), and will clean up the memory resources after you.

I think in general though you should be using zig not rust, because zig is aggressively unopinionated about memory allocators, so when you allocate memory in your code, you'll use the allocator that zigler provides, which makes the BEAM alloc conformant to zig's allocator interface. This means your code will be more performant, because there are fewer trips to the kernel on allocate and destroy, and your code will respect the BEAM's memory fragmentation, cache optimization, etc.

Re: Erlang LS – The Erlang Language Server

#18
Configuring Neovim for different languages used to be such a hassle, now with CoC.nvim, all it takes is pointing to the LS, combined with the benefits of having functionality standardized for all languages. I've used Erlang LS briefly, and if nothing else, it's way easier to set up.
Post reply on HN