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

repl: properly handle uncaughtException #27151

Closed

Commits on Apr 25, 2019

  1. repl: properly handle uncaughtException

    When running the REPL as standalone program it's now possible to use
    `process.on('uncaughtException', listener)`. It is going to use those
    listeners from now on and the regular error output is suppressed.
    
    It also fixes the issue that REPL instances started inside of an
    application would silence all application errors. It is now prohibited
    to add the exception listener in such REPL instances. Trying to add
    such listeners throws an `ERR_INVALID_REPL_INPUT` error.
    
    Fixes: nodejs#19998
    BridgeAR committed Apr 25, 2019
    Configuration menu
    Copy the full SHA
    cbd8eec View commit details
    Browse the repository at this point in the history

Commits on May 6, 2019

  1. Configuration menu
    Copy the full SHA
    488d03a View commit details
    Browse the repository at this point in the history