https://github.com/violetbuse/wemote
A gleam package to execute code on remote erlang nodes.
https://github.com/violetbuse/wemote
distributed erlang erpc gleam rpc
Last synced: about 2 months ago
JSON representation
A gleam package to execute code on remote erlang nodes.
- Host: GitHub
- URL: https://github.com/violetbuse/wemote
- Owner: violetbuse
- Created: 2024-06-25T13:44:22.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-25T13:47:45.000Z (almost 2 years ago)
- Last Synced: 2025-08-20T01:27:20.511Z (8 months ago)
- Topics: distributed, erlang, erpc, gleam, rpc
- Language: Gleam
- Homepage: https://hexdocs.pm/wemote/
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wemote
[](https://hex.pm/packages/wemote)
[](https://hexdocs.pm/wemote/)
```sh
gleam add wemote
```
```gleam
import wemote
pub fn main() {
let remote_node = //get some remote node
wemote.call(remote_node, fn() {1 + 2}, wemote.Infinity)
// Ok(3)
}
```
Further documentation can be found at .
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
gleam shell # Run an Erlang shell
```