Reputation: 6039
I'm looking for a service where I can discover new erlang libraries. I know that I can find some in Github or BitBucket, but I was looking for something more specific.
I remember that I had found something like that in the past, but I cannot find it anymore.
Upvotes: 0
Views: 68
Reputation: 3584
What you might be remembering is EXPM which is discontinued in favor of Hex.
You could look into this wiki with benefit of bookmarks being recommend (used and working).
And ErlangCentral is doing a good work with collecting erlang projects in one place, and announcing new releases. It is also a great place for newest blog posts and videos from conferences which is the best way of keeping tabs on what's happening in Erlang work.
Upvotes: 1
Reputation: 1550
Hex is a package manager for the Erlang VM. The majority of the packages are written in Elixir, but there are some Erlang packages as well. Hex currently only supports automatic package management for Elixir, but you can still find Erlang packages and find a link to e.g. a Github repository.
You can also call Elixir functions directly in your Erlang code, see this post.
Upvotes: 1