Questions on nodex

I have a project which needs to call some C-language functions (e.g., from tslib). For safety’s sake, I had been considering using a Port rather than a NIF. However, I just stumbled upon the Nodex package, which seems like a very nice way to handle this sort of thing. Can anyone offer advice, caveats, pointers to examples, etc?

-r

It is described in erl_interface guide. In short C Node is a node that behaves like Erlang instance via Distributed Erlang, but is written in any other language (not necessarily C despite the name).

1 Like