I want to tryout the Poison json module without creating a mix project.
How do I install it and make it available in iex via import?
I have been able to add it
I don't know if there is an official way to do this.
One way would be to clone the library project locally, compile it, and then add it to the library path like this by creating a ~/.iex.exs
script:
IO.puts "Adding poison to path from ~/.iex.exs"
true = Code.prepend_path("#{path_to_project}"/poison/_build/dev/lib/poison/ebin")