dimitarvp
How to run Erlog inside IEX
In case anyone is interested:
- Add
erlogto yourmix.exsfile, in theapplication/0public function. Example:
def application do
[applications: [:logger, :erlog]]
end
- Add
erlogto yourmix.exsfile, in thedeps/0private function. Example:
defp deps do
[
{:erlog, github: "rvirding/erlog"}
]
- Command line: run
mix deps.get - Command line: run
mix deps.compile - Command line: run
iex -S mix - You should be able to invoke
:erlog,:erlog_server,:erlog_shelletc. functions from inside the IEx shell (there are 16 modules actually)
@AstonJ Not sure if that’s worthy of a Wiki, you decide.
@rvirding / @josevalim For your reference. Looks like if the Erlang project is “done right” (example for “not done right” here: http://stackoverflow.com/questions/32662329/using-erlang-library-with-elixir), it’s a pretty straightforward process.
Trending in Guides/Tuts
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First Post!
dogweather
Thanks for the great follow-up. I’m going to try this in a Phoenix app.