Popularity
0.9
Declining
Activity
0.0
Stable
5
2
0
Monthly Downloads: 10
Programming language: Elixir
License: MIT License
Tags:
Miscellaneous
url_unroller alternatives and similar packages
Based on the "Miscellaneous" category.
Alternatively, view url_unroller alternatives based on common mentions on social networks and blogs.
-
ex_rated
ExRated, the Elixir OTP GenServer with the naughty name that allows you to rate-limit calls to any service that requires it. -
gen_task
Generic Task behavior that helps encapsulate errors and recover from them in classic GenStage workers. -
countriex
All sorts of useful information about every country. A pure elixir port of the ruby Countries gem
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of url_unroller or a related project?
README
UrlUnroller
An example of unrolling short urls in Elixir.
Depends on HTTPoison running as an application. e.g. in your mix.exs
def application do
[applications: [:logger, :httpoison]]
end
Usage:
> {status, result, response_info} = UrlUnroller.unroll("http://bit.ly/1Bx0zo8")
{:ok, "http://blog.semanticart.com/", ...}