SilverOrb

A standard library for Orb.

The docs can be found at https://hexdocs.pm/silver_orb.

WebAssembly is low level — you essentially get to define global variables, an array of memory, and some functions to operate on them. It’s not batteries-included.

SilverOrb provides several extra batteries so common tasks are easier. They are:

Installation

The package can be installed by adding silver_orb to your list of dependencies in mix.exs:

def deps do
  [
    {:silver_orb, "~> 0.0.6"}
  ]
end

Inspiration