You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.js — extracts error type, message, file, and line number from raw
Node.js Error objects. Filters Node internals and node_modules from the
stack trace so only user code frames are surfaced
formatter.js — renders structured error output to the terminal in three
sections: error type and message, file location and line number, and
developer hint. Zero-dependency colorization via raw ANSI codes
index.js — entry point that hooks into process.on('uncaughtException')
and process.on('unhandledRejection') to intercept all unhandled errors
automatically on require