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
Currently validjson reads all of a file or stream into memory before validating it.
validjson
Because the native JSON.parse only allow for well structured JSON, there is no other way to do it.
JSON.parse
Either use another JSON parser or implement one.
Another JSON parser should also allow for better error messages and error positions.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently
validjson
reads all of a file or stream into memory before validating it.Because the native
JSON.parse
only allow for well structured JSON, there is no other way to do it.Either use another JSON parser or implement one.
Another JSON parser should also allow for better error messages and error positions.
The text was updated successfully, but these errors were encountered: