--
You received this message because you are subscribed to the Google Groups "elixir-lang-talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elixir-lang-ta...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elixir-lang-talk/a53caa6f-64e3-4a2a-80a5-487a191c63b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Then any developer behind hex.pm can comment here? Why designed this
service not allowing people directly download from web ? someone might
say the github for httpotion is exposed you can download from github
for tarball, I'm not sure is that true for all hex.pm packages ? and
for all historical versions like
https://hex.pm/packages/httpotion/2.2.2 is there always a github
release for that? what if the original github user has deleted his
repo?
--
You received this message because you are subscribed to the Google Groups "elixir-lang-talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elixir-lang-ta...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elixir-lang-talk/CAJctwx42m%2B%2BmzJVV1F0c1ok7WVaO9iGs5PKVT9uxH%2BYqqKCvgQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Beautiful is
better than ugly,
Explicit is better than implicit,
Simple is better than complex,
Complex is better than complicated.
The Zen of Python, by Tim Peters
To view this discussion on the web visit https://groups.google.com/d/msgid/elixir-lang-talk/1e9f934a-d4ce-469e-8030-14b466f8f9b9%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elixir-lang-talk/CAJbPmJNvOrus_qhFrVuF2qgDBKYE678e6c%2Bk8iKTATey46kwsg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
I'm interested how did that globally installing packages work? is it
documented somwhere?
http://elixir-lang.org/docs/master/mix/Mix.html (is there an online
version for `mix help` ? from here it seems only find API references
?)
but I wonder is there a central place maintained all installable ez
files ? is there always a compiled ez file maintained for each phoenix
release ? why I can't see the ez file download link from
https://github.com/phoenixframework/phoenix/releases ?
from this comment I wonder does hex.pm saved a compiled ez copy for
each package's each release ?
https://github.com/hexpm/hex_web/issues/379#issuecomment-234240573
About global packages, I wonder if anyone is using elixir to write
useful CLI tools ? or is phonenix and web server the only selling
point?
the question is: since I am not aware of a json parser in standard
elixir library, if I want to write a CLI tool to test JSON API with
some manipulation, probably I'll need to pull
https://hex.pm/packages/poison as dependency, then what's the best way
to deliver such a tool ?