We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since hjson-cs has been abandoned, I created my own parser: HjsonSharp (MIT-license).
Aside from being actively maintained, it has a number of benefits over this existing library:
System.Text.Json
JsonToken
{"key": "val
Result
Despite adding so many features, I think the source code is much more readable and structured than this library.
In terms of performance, the libraries are similar:
LongString is a 1,000,000 character string, ShortInteger is a 5 digit number, and Person is a simple object with five properties.
LongString
ShortInteger
Person
I'm happy to fix bugs or add new HJSON features if the specification changes. In my opinion, HJSON is far superior to JSON5.
The text was updated successfully, but these errors were encountered:
Cool! I'll add link and badges on https://hjson.github.io/.
Sorry, something went wrong.
No branches or pull requests
Since hjson-cs has been abandoned, I created my own parser: HjsonSharp (MIT-license).
Aside from being actively maintained, it has a number of benefits over this existing library:
System.Text.Json
JsonToken
at a time without loading the entire document into memory{"key": "val
Result
pattern to avoid the overhead of exceptionsDespite adding so many features, I think the source code is much more readable and structured than this library.
In terms of performance, the libraries are similar:
LongString
is a 1,000,000 character string,ShortInteger
is a 5 digit number, andPerson
is a simple object with five properties.I'm happy to fix bugs or add new HJSON features if the specification changes. In my opinion, HJSON is far superior to JSON5.
The text was updated successfully, but these errors were encountered: