Crates.io | nuon |
lib.rs | nuon |
version | 0.100.0 |
source | src |
created_at | 2024-04-30 23:13:54.957372 |
updated_at | 2024-11-13 04:14:24.879218 |
description | Support for the NUON format. |
homepage | |
repository | https://github.com/nushell/nushell/tree/main/crates/nuon |
max_upload_size | |
id | 1225616 |
size | 45,341 |
Support for the NUON format.
The NUON format is a superset of JSON designed to fit the feel of Nushell. Some of its extra features are
from_nuon
]below is some data in the JSON format
{
"name": "Some One",
"birth": "1970-01-01",
"stats": [
2544729499973429198,
687051042647753531,
6702443901704799912
]
}
and an equivalent piece of data written in NUON
{
name: "Some One", # the name of the person
birth: "1970-01-01", # their date of birth
stats: [ # some dummy "stats" about them
2544729499973429198,
687051042647753531,
6702443901704799912, # note the trailing comma here...
], # and here
} # wait, are these comments in a JSON-like document?!?!