• Stars
    star
    247
  • Rank 158,413 (Top 4 %)
  • Language
    Rust
  • License
    Apache License 2.0
  • Created over 3 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🚀 a lightweight, universal actor-model vm for writing scalable and reliable applications that run natively and on WebAssembly
LAM logo

 

Main workflow

LAM is a lightweight, universal virtual machine for writing scalable and reliable applications that run natively and on WebAssembly.

It is inspired by Erlang and Lua, and it is compatible with the Erlang VM.

LAM lets you reuse the same programming paradigm, known for being productive, across your entire application stack.

Come join us on Discord! (Ps: we share a server with Caramel)

Features

  • Runs Natively and on WebAssembly -- pick and choose your runtime!
  • Easy to Target -- a small and specified bytecode with a text and binary format
  • Erlang VM compatibility -- run your existing Erlang, Elixir, Caramel, and Gleam code
  • Seamless multi-core -- built to scale from one to thousands of cores for free
  • Extreme reliability -- use Erlang's OTP supervision patterns

Status

Still under heavy development!

There's plenty of work to be done for it to be fully usable, but we keep a few tracking issues here:

The Erlang and Elixir ecosystem compatibility is tracked here:

Getting Started

You can download the latest binary from the releases page. After unpacking it you should be able to add it to your PATH env and start playing around with the lam binary.

Like this:

# in this example I'm running linux with glibc
$ wget https://github.com/AbstractMachinesLab/lam/releases/download/v0.0.7/lam-v0.0.7-x86_64-unknown-linux-gnu.tar.gz
$ tar xzf lam-*
$ export PATH=$(pwd)/lam/bin:$PATH

Now we can do a quick test. Make a file test.erl with this contents:

-module(test).

-export([main/1]).

main([]) -> ok;
main([Name|T]) ->
  io:format(<<"Hello, ~p!\n">>, [Name]),
  main(T).

And we can compile it to BEAM byte code and use LAM to build a binary for it, like this:

$ erlc test.erl
$ lam build test.beam --output test.exe --target native --entrypoint test
$ ./test.exe Joe Robert Mike
Hello, Joe!
Hello, Robert!
Hello, Mike!

How does it work?

LAM compiles your .beam files ahead of time into a representation that's optimized for running them.

Then it bundles that with the appropriate target runtime into some binary output.

                       binary
                    instructions
                   +------------+              output
 .beam files +---->| 1001101110 |-----+    +-----------+
                   +------------+     |    | .exe      |
                                      |--->| .wasm     |
                   +-------------+    |    | .wasm/.js |
                   | LAM RunTime |----+    +-----------+
                   +-------------+

More Repositories

1

tldr.jsx

📚 A Reactive web client for tldr-pages
JavaScript
1,547
star
2

caramel

🍬 a functional language for building type-safe, scalable, and maintainable applications
OCaml
1,025
star
3

reason-design-patterns

🗺 An unofficial collection of "design patterns" for ReScript, Reason, and OCaml
Reason
477
star
4

minttea

A fun little TUI framework for OCaml
OCaml
230
star
5

httpkit

⚡️ High-level, High-performance HTTP(S) Clients/Servers in Reason/OCaml
OCaml
202
star
6

riot

An actor-model multi-core scheduler for OCaml 5 🐫
OCaml
119
star
7

serde.ml

Serialization framework for OCaml
OCaml
109
star
8

ng2

📐 minimalistic modular angular.js app generator (outdated as of Dec 1st, 2013)
JavaScript
95
star
9

awesome-alt-langs

Just a list of Awesome Alt Langs to check out
78
star
10

reactor

🚀 Native Actors for Reason and OCaml
OCaml
70
star
11

cactus

🌵A composable static site generator
Reason
65
star
12

atacama

Modern, pure OCaml socket pool for Riot
OCaml
37
star
13

scarab

Benchmarking framework for OCaml
OCaml
24
star
14

trail

Minimal composable server framework for Riot
OCaml
24
star
15

blink

A pure OCaml HTTP client for Riot
OCaml
23
star
16

pachadb

an edge database
Rust
22
star
17

tty

A pure OCaml library for working with terminals
OCaml
22
star
18

hotstuff

🔥 Composable, incremental, turnkey document compiler
Rust
21
star
19

colors

A pure OCaml library for manipulating colors in different color spaces.
OCaml
20
star
20

watch

⌚ A portable Go alternative to GNU's watch – very useful for autorunning things!
Go
19
star
21

rules_reason

📐Reason/OCaml rules and tools for Bazel
Python
19
star
22

nomad

Pure OCaml HTTP 1.1/2 & WebSocket server for Riot
Elixir
19
star
23

mlx

OCaml
18
star
24

mesa

A modern, idiomatic web framework for Riot
OCaml
16
star
25

tldr.js

Old version now mirroring React-client, please go to
JavaScript
16
star
26

ocaml-grpc

A gRPC implementation written in pure OCaml/Reason
OCaml
16
star
27

dotfiles

💾 ~/.*
Python
14
star
28

q-lang

Rust
14
star
29

react-useMailbox

📫 A small React hook to turn your components into "Actors".
JavaScript
13
star
30

chatty

a TUI app for chatting on slack
OCaml
12
star
31

Bakery

CoffeeScript, Backbone, RequireJS, HeadJs and Jasmine. All together.
JavaScript
11
star
32

Expresso

CoffeeScript compiling for Pythonistas.
Python
10
star
33

config.ml

conditional compilation via attributes for OCaml
OCaml
10
star
34

castore

A portable pure OCaml CA Store
OCaml
10
star
35

loop

Unbounded loops with early breaks and continues for OCaml 5.
OCaml
9
star
36

hooke

Spring-based animation library for OCaml
OCaml
9
star
37

mixtape

🎧 🔄 Synchronised Playlist Playback for Spotify
JavaScript
8
star
38

telemetry

Lightweight event dispatching for OCaml.
OCaml
8
star
39

oak

🌳 A minimalistic Tree-like tool built in Reason Native
OCaml
8
star
40

twitchboard

📺 Real-time Stream Stats Tool for Twitch.tv
OCaml
7
star
41

idris-coda

📦 A collection of Idris packages
Idris
6
star
42

blast64

⚡ An apparently even faster base64 decoder for Chrome
HTML
6
star
43

fuzzql

⚙️ A GraphQL Fuzzy Testing Toolkit
OCaml
6
star
44

servus

A static-file server written with http/af + Reason Native
OCaml
6
star
45

woolly

a little mastodon client
TypeScript
6
star
46

asdf

🐛 Random code snippets
Idris
4
star
47

escheck

JavaScript
4
star
48

ng-board

a realtime dashboard
JavaScript
4
star
49

paper-eaters

📚
4
star
50

switchboard.rb

Ruby client for switchboard.spatch.co
Ruby
4
star
51

tap-idris

🍻 A simple TAP producer and consumer/reporter for Idris
Idris
4
star
52

reason-gc

🗑 A small exploration of the Reason/OCaml Garbage Collector
OCaml
4
star
53

wittgenstein

📚 A semantic, real-time, distributed, knowledge base.
Erlang
4
star
54

PhantomSDL

👾 A game engine I was building when I was 14
C
3
star
55

zazen

🙏 sit, breathe, code.
JavaScript
3
star
56

erlang-gui

An experiment in building high-performance, native graphical user interfaces in Erlang
Erlang
3
star
57

bazaar

find anything you need in ocaml
OCaml
3
star
58

jawa

OCaml
3
star
59

try

♻️ A portable Go utility to retry commands with backoff
Go
2
star
60

libra

⚖️ A Lisp Parser in Idris
Idris
2
star
61

anchorman

⚓👨 An Erlang library for broadcasting information
Erlang
2
star
62

unveil

🎬 The Reactive Javascript Presentation Library
JavaScript
2
star
63

play.app

an ember.js phonegap application
JavaScript
2
star
64

node-puntopagos

PuntoPagos Module for NodeJS
JavaScript
2
star
65

making-makefiles

A small set of koans to learn about Makefiles
Vim Script
2
star
66

rocket

following the Essentials of Compilation book in OCaml
OCaml
2
star
67

ws

🔄 An erlang WebSocket server
Erlang
2
star
68

pry

🔭 An Erlang application for observing supervision trees
Erlang
2
star
69

rx-history

History Observable for RxJS
JavaScript
2
star
70

dasBlog

For blogging wasn't German enough.
Python
2
star
71

rdn

Reason Data Notation
2
star
72

EXII-macOS

A poorly written User-land driver for the EXII USB device family
Swift
2
star
73

libc.ml

Raw bindings to platform APIs for OCaml
OCaml
2
star
74

ng-board-smoothie

smoothie graphs widget for ng-board
JavaScript
2
star
75

message.me

a sample web app built with ng2
JavaScript
1
star
76

go-go-gadget

go tests
Go
1
star
77

tweet-cli

tweet from your cli
JavaScript
1
star
78

projector

📽️ Stay on top of your Github Projects
JavaScript
1
star
79

retrie

A quick and dirty, likely broken trie
OCaml
1
star
80

reactor-web

OCaml
1
star
81

textmine.js

Text-mining for NodeJS
1
star
82

ngage-platformer

angularjs based platformer game
JavaScript
1
star
83

cerebro

🔭 A simple app to track down Mutant-grade Engineers on Github
JavaScript
1
star
84

piclevel-api

JavaScript
1
star
85

v-sexpr

An S-expression library for V
V
1
star
86

transporter.io-ng-board

ng-board transport for transporter.io
JavaScript
1
star
87

transporter.io

a transport system over websockets
JavaScript
1
star
88

PlayApp

the play app!
Objective-C
1
star
89

webtail

A simple file piping over http script using connect and spawn('tail')
JavaScript
1
star
90

grunt-knox

A set of Knox tasks for GruntJS
JavaScript
1
star
91

Toasty

A Toasted game framework for the Marmalade SDK
C++
1
star
92

anchorman.js

a reporter library for nodejs
JavaScript
1
star
93

bsb-load-test

Just a repo building a crapload of modules
OCaml
1
star
94

transporter.io-events

events transport for transporter.io
JavaScript
1
star
95

tribble

OCaml
1
star
96

lisping

some lisping!
Common Lisp
1
star
97

cleverboard

the first project using ng-board and transporter.io
1
star
98

setup.js

my setup scripts
JavaScript
1
star
99

message.me-api

The backend powering the app built with ng2
JavaScript
1
star
100

erl-port-test

Erlang
1
star