What is your suggestion about this Distributed tasks and tags - The Elixir programming language
For example, I create another node with new dependencies-compiled and after that I can get access to this from main node!!
My main source starts with this: iex --sname main -S mix phx.server
My component one or all the dependencies: iex --sname dep -S mix
Now can run this command in main node like this:
Node.spawn_link :"dep@shahryars-iMac", fn -> Hello.world end
I have no experience of this way, but do you have any suggestion about this?