WAC (WebAssembly Compositions) composer for the Component Model
Dependencies
src/
├── component/ # Component Model binary parser, plug, encoder
└── composer/ # WAC parser, resolver, composer, DCE
examples/
├── hello/ # Single component example
├── compose/ # Multi-component composition example
├── core-module/ # Core Module plug example
└── wac/ # WAC script examplepackage example:composition;
let hello = new example:hello {};
let greeter = new example:greeter {
hello: hello.hello,
};
export greeter.greet;just # check + test
just fmt # format code
just check # type check
just test # run tests
just run # run mainWAC (WebAssembly Compositions) composer for the Component Model
Dependencies