Crates.io | ron-wasm |
lib.rs | ron-wasm |
version | 0.1.0 |
source | src |
created_at | 2024-06-15 10:34:29.962392 |
updated_at | 2024-06-15 10:34:29.962392 |
description | Wasm Bindings for RON |
homepage | |
repository | https://github.com/sorairolake/ron-wasm |
max_upload_size | |
id | 1272730 |
size | 19,656 |
ron-wasm is the Wasm bindings for RON (Rusty Object Notation).
To install this library:
npm install @sorairolake/ron-wasm
You will need wasm-pack
to build this crate.
wasm-pack build
This will generate build artifacts in the pkg
directory.
import * as assert from "jsr:@std/assert";
import * as ron from "./pkg/ron_wasm.js";
const data = {
integer: 42,
float: 3.14,
infinity: Infinity,
string: "RON",
boolean: true,
list: ["John", "Doe"],
};
const expected =
`{"integer":42,"float":3.14,"infinity":inf,"string":"RON","boolean":true,"list":["John","Doe"]}`;
const ronString = ron.stringify(data);
assert.assertEquals(ronString, expected);
const obj = ron.parse(ronString);
assert.assertEquals(obj, data);
See the documentation for more details.
The minimum supported Rust version (MSRV) of this library is v1.73.0.
Please see CHANGELOG.adoc.
Please see CONTRIBUTING.adoc.
Copyright © 2024 Shun Sakai (see AUTHORS.adoc)
This library is distributed under the terms of either the Apache License 2.0 or the MIT License.
This project is compliant with version 3.0 of the REUSE Specification. See copyright notices of individual files for more details on copyright and licensing information.