I'm looking to collect information on why certain functionality found in Erlang/OTP is usually handled instead by a third party library in people's projects.
This could be bugs, missing functionality, poor interface, performance, etc.
Examples off the top of my head that need expanding on are:
- httpc
- httpd
- http_uri
- reltool
Please comment on this gist with libs and reasons, even if you aren't sure they are accurate or still accurate today.
There doesn't appear to be any clear benefit when attempting to push for
relx
instead ofreltool
in the sense that automatic configuration can still feed a config throughreltool
. Why bother to rewritereltool
, when releases are important and need to be dependable? Doesn't that just fragment development effort?Would be good to know where
Emakefile
s get used on more than toy projects, or where themake
module gets used, and why they don't have any features... and why isn't rebar in Erlang/OTP?