| Crates.io | nuon |
| lib.rs | nuon |
| version | 0.107.0 |
| created_at | 2024-04-30 23:13:54.957372+00 |
| updated_at | 2025-09-03 01:33:00.091354+00 |
| description | Support for the NUON format. |
| homepage | |
| repository | https://github.com/nushell/nushell/tree/main/crates/nuon |
| max_upload_size | |
| id | 1225616 |
| size | 90,974 |
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?!?!