Description
This package contains code to work with the version 1 of Marlowe Core.
TODO: PLT-7500 create compatibility API to work with the Playgrounds interface.
Getting started
The @marlowe.io/language-core-v1
package is released as an ESM module and can be used with a modern bundler or imported directly in the browser (without any bundler) as long as you use an import map.
Browser
<html>
<body>
<script src="https://cdn.jsdelivr.net/gh/input-output-hk/marlowe-ts-sdk/jsdelivr-npm-importmap.js"></script>
<script type="module">
import * as C from "@marlowe.io/language-core-v1";
console.log("TODO", C);
debugger;
</script>
</body>
</html>