1 unstable release

new 0.1.0 Jun 15, 2024

#285 in WebAssembly

Download history 104/week @ 2024-06-12

104 downloads per month

Apache-2.0 OR MIT

8KB

Wasm Bindings for RON

CI npm Version crates.io Version MSRV Docs License

ron-wasm is the Wasm bindings for RON (Rusty Object Notation).

Usage

Installation

To install this library:

npm install @sorairolake/ron-wasm

Build

You will need wasm-pack to build this crate.

wasm-pack build

This will generate build artifacts in the pkg directory.

Example

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);

Documentation

See the documentation for more details.

Minimum supported Rust version

The minimum supported Rust version (MSRV) of this library is v1.73.0.

Changelog

Please see CHANGELOG.adoc.

Contributing

Please see CONTRIBUTING.adoc.

License

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.

Dependencies

~2.4–3.5MB
~65K SLoC