Discussion
Search code, repositories, users, issues, pull requests...
barishnamazov: You shouldn't be using JSON for things that'd have performance implications.
Spivak: Can you imagine if a service as chatty and performance sensitive as Discord used JSON for their entire API surface?
garrettjoecox: Very cool stuff!This did catch my eye, however: https://github.com/creationix/rx?tab=readme-ov-file#proxy-be...While this is a neat feature, this means it is not in fact a drop in replacement for JSON.parse, as you will be breaking any code that relies on the that result being a mutable object.
Levitating: JSON is human-readable, why even compare it with this. Is any serialization format now just a "JSON alternative"?
dietr1ch: cat file.whatever | whatever2json | jq ?(Or to avoid using cat to read, whatever2json file.whatever | jq)