Yaml Wasm
WebAssembly module to parse YAML.
Usage
Web and Deno
Use ES Module to import ./index.js
.
On Deno, make sure to enable --allow-net
to allow fetch()
to work properly.
import init, { parse, stringify } from 'https://deno.land/x/yaml_wasm@0.0.0/index.js'
await init()
// Convert YAML text to JavaScript object
const [value] = parse(`
abc:
def: 456
foo:
- bar
`)
console.log(value)
// Convert JavaScript object to YAML text
const text = stringify(value)
console.log(text)
Node.js
TODO