I\'m using the Fetch API both in the frontend and on the backend (NodeJS), a problem that I\'ve been facing a lot happens when parsing the response as json.
respon
Why you don't handle error with try catch
try { body = JSON.parse(body) } catch (err) { }