Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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 1 month ago
JSON representation

A gleam package to execute code on remote erlang nodes.

Awesome Lists containing this project

README

        

# wemote

[![Package Version](https://img.shields.io/hexpm/v/wemote)](https://hex.pm/packages/wemote)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](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
```