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

fix: properly handle cyclic objects #119

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dannote
Copy link

@dannote dannote commented Mar 31, 2025

I encountered the following error when logging objects with circular references:

[Error] <RouterView> @ component update – TypeError: JSON.stringify cannot serialize cyclic structures. — @hawk__so_javascript.js:766
TypeError: JSON.stringify cannot serialize cyclic structures. — @hawk__so_javascript.js:766
  stringify
  map
  (anonymous function) — @hawk__so_javascript.js:766
  warn$1 — chunk-U3LI7FBV.js:2116
  validateProp — chunk-U3LI7FBV.js:6468
  validateProps — chunk-U3LI7FBV.js:6440
  initProps — chunk-U3LI7FBV.js:6129
  setupComponent — chunk-U3LI7FBV.js:9942
  mountComponent — chunk-U3LI7FBV.js:7300
  processComponent — chunk-U3LI7FBV.js:7266
  patch — chunk-U3LI7FBV.js:6782
  mountChildren — chunk-U3LI7FBV.js:7014
  mountElement — chunk-U3LI7FBV.js:6937
  processElement — chunk-U3LI7FBV.js:6902
  patch — chunk-U3LI7FBV.js:6770
  mountChildren — chunk-U3LI7FBV.js:7014

This error occurs because JSON.stringify cannot handle cyclic structures, causing the application to crash when such objects are logged.

To address this, my PR introduces the safeStringify function from the safe-stringify package (new dependency added). This utility safely serializes objects, replacing circular references with a [Circular] marker.

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

Successfully merging this pull request may close these issues.

None yet

1 participant