Is it possible to create a shell tunnel, connect to it from outside, and send commands to it?
I want to manage nodes and send arbitrary commands from outside of Erlang without creating an API.
erlshell = Erlshell(host="localhost")
res = erlshell.exec("""
A = 2,
B = 5,
A + B
")
print(res)
I found this project (http://erlport.org/) but it hasn't had activity in 6 years.