Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where's the elixir dependencies respository?

Tags:

elixir

In an elixir project mix.exs file, we include the dependencies like so

 defp deps(_) do
   [
     {:phoenix, "~> 0.6.1"},
     {:ecto, "~> 0.2.0"}
   ]
 end

Where's the repository that stores the elixir code for these dependencies?

Coming from a Ruby background, the deps function is analagous to a Gemfile. But I know gems by default pull from "rubygems.org". In otherwords, what's like the Rubygems.org for elixir?

like image 508
User314159 Avatar asked Jan 08 '23 19:01

User314159


1 Answers

This is mentioned in the documentation, it's in the Hex Package Manager.

like image 109
Óscar López Avatar answered Apr 26 '23 11:04

Óscar López