When working inside Angular (Angular 4, 5), if a component raises an error (an error of type TypeError or null or undefined), the entire application is interrupted forward.
How can we handle this to catch component-level errors and possibly show a backup interface, for example, React16 uses Error Boundaries .
source
share