Skip to content
New issue

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

JSON.parse is unsafe #35

Open
eliasmalik opened this issue Mar 29, 2018 · 0 comments
Open

JSON.parse is unsafe #35

eliasmalik opened this issue Mar 29, 2018 · 0 comments
Labels

Comments

@eliasmalik
Copy link

JSON.parse will throw an exception if it's given a string that isn't valid JSON. This will be rare when dealing with an API like Github's, but it's best to be sure, especially if that error will prevent you from responding to the client, or take down your server entirely:

const bod = JSON.parse(body);

Or prevent your client-side code from updating the UI to let your user know what's happened:

const response = JSON.parse(xhr.responseText);

You'll need to use try/catch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants