https://github.com/sigmasd/rondeno
Deno wasm wrapper over ron
https://github.com/sigmasd/rondeno
deno encoding ron wasm
Last synced: 22 days ago
JSON representation
Deno wasm wrapper over ron
- Host: GitHub
- URL: https://github.com/sigmasd/rondeno
- Owner: sigmaSd
- Created: 2022-12-25T10:36:41.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-25T17:22:12.000Z (over 3 years ago)
- Last Synced: 2025-02-25T00:08:55.652Z (over 1 year ago)
- Topics: deno, encoding, ron, wasm
- Language: JavaScript
- Homepage: https://deno.land/x/rondeno
- Size: 188 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RonDeno
Deno wasm wrapper over [ron](https://github.com/ron-rs/ron)
## Usage
```ts
import { parse, stringify } from "https://deno.land/x/rondeno/mod.ts";
console.log(
stringify(parse("(boolean: true, float: 1.23)")),
);
```
## Developemnt
`deno task wasmbuild`
`deno test -A`