Packages

A bridge between Glamorous Toolkit (GT) and the BEAM VM, enabling remote code evaluation, object inspection, and Phlow view rendering.

Current section

Files

Jump to
gt_bridge README.md
Raw

README.md

## Installation in GT
```st
Metacello new
repository: 'github://mariari/ElixirGtBridge:master/src';
baseline: 'Gt4beam';
load
```
## Load Lepiter
After installing with Metacello, you will be able to execute
```
#BaselineOfGt4beam asClass loadLepiter
```
## Installing in an Elixir Project
The package is [available on Hex](https://hex.pm/packages/gt_bridge).
Add `gt_bridge` to your dependencies in `mix.exs`:
```elixir
def deps do
[
{:gt_bridge, "~> 0.15.0"}
]
end
```