Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maarek/ether
An Elixir Debugger
https://github.com/maarek/ether
Last synced: about 1 month ago
JSON representation
An Elixir Debugger
- Host: GitHub
- URL: https://github.com/maarek/ether
- Owner: maarek
- License: mit
- Created: 2015-05-06T01:16:39.000Z (over 9 years ago)
- Default Branch: develop
- Last Pushed: 2015-05-12T00:05:47.000Z (over 9 years ago)
- Last Synced: 2024-11-01T07:33:14.942Z (about 1 month ago)
- Language: Elixir
- Homepage:
- Size: 172 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Ether provides functionality to hook Elixir into the Erlang debugger. (Debugging)
- fucking-awesome-elixir - ether - Ether provides functionality to hook Elixir into the Erlang debugger. (Debugging)
- awesome-elixir - ether - Ether provides functionality to hook Elixir into the Erlang debugger. (Debugging)
README
[![Build Status](https://api.travis-ci.org/maarek/ether.svg?branch=master)](https://travis-ci.org/maarek/ether) | [![Inline docs](http://inch-ci.org/github/maarek/ether.svg?branch=develop)](http://inch-ci.org/github/maarek/ether)
Ether
=====`Ether` provides functionality to hook Elixir into the Erlang debugger.
Since this project is new a short disclaimer is in order. Presently,
`Ether` currently only wraps Erlang's int module. This module is the
Interpreter Interface and it's primary use is with the debugger
modules included in erlang. Since erlang can change their debugger
at any time, this might be a little unstable. Hopefully as things
advance, we can move away from that dependency and advance an elixir
debugger.## Install As Dependency
As a dependency to a mix.es file:
```elixir
def application() do
[applications: [:ether]]
enddefp deps do
[{:ether, github: "maarek/ether"}]
end
``````
$ mix deps.get
```