Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.47 KB

README.md

File metadata and controls

29 lines (20 loc) · 1.47 KB

Wobserver NG

CI

This repo is an effort of keeping the original wobserver updated with latest version of Elixir.

Original wobserver is a wonderful project making remotely inspecting Elixir developing easy, but it has stopped updating itself after 2017. Both Elixir the language and Erlang OTP platform have changed a lot, so need some effort to change it and make it work again. This repo is targeting of doing that.

The current effort is focusing on making it work with

  • Elixir ~ v1.14.x
  • Erlang/OTP 25

All functions are kept the same as origianl project, thus for knowing what it is, how to use it, and browse all functionalities, please refer to origianl README or simply original wobserver repo.

This project is licensed with same MIT license as in original wobserver project.

How to use it

I have published this repo with name "wobserver_ng" to Hex.pm. So if want to use it in your project, simply add {:wobserver_ng, "~> 1.14"} to your deps function in mix.exs, like below

  defp deps do
    [
      ...,
      {:wobserver_ng, "~> 1.14"},
      ...
    ]
  end