A React error boundary hook for function components
npm install react-use-error-boundaryA React error boundary hook for function components
React 16 introduced Error Boundaries. As of React 18, there still is no equivalent hook for function components.
This library draws inspiration from Preact's useErrorBoundary and attempts to recreate a similar API.
1. Add this package to your project:
- yarn add react-use-error-boundary
Just trying things out or want to skip the build step? Use the unpkg URL:
```
Whenever the component or a child component throws an error you can use this hook to catch the error and display an error UI to the user.
`jsxundefined
// error = The error that was caught or if nothingError
// errored. If something other than an instance of Error
// was thrown, it will be wrapped in an object by callingnew Error()
// on the thrown value.`
//
// resetError = Call this function to mark an error as resolved. It's
// up to your app to decide what that means and if it is possible
// to recover from errors.
//
const [error, resetError] = useErrorBoundary();
For application monitoring, it's often useful to notify a service of any errors. useErrorBoundary accepts an optional callback that will be invoked when an error is encountered. The callback is invoked with error and errorInfor which are identical to React's componentDidCatch arguments. Identical to React, error is the error that was thrown, and errorInfo is the component stack trace.
`jsx`
const [error] = useErrorBoundary((error, errorInfo) =>
logErrorToMyService(error, errorInfo)
);
A full example may look like this:
`jsx
import { withErrorBoundary, useErrorBoundary } from "react-use-error-boundary";
const App = withErrorBoundary(({ children }) => {
const [error, resetError] = useErrorBoundary(
// You can optionally log the error to an error reporting service
(error, errorInfo) => logErrorToMyService(error, errorInfo)
);
if (error) {
return (
{error.message}
return
Note that in addition to the hook, the component must be wrapped with
withErrorBoundary. This function wraps the component with an Error Boundary and a context provider.This was done to avoid hooking into React internals, which would otherwise be required. The hope is that the eventual React hook solution will present a similar API, and users can easily migrate by removing the
withErrorBoundary wrapper.Alternatively, the
component from this library may be placed in your component tree, above each component using useErrorBoundary, instead of wrapping the component with withErrorBoundary:`jsx
import {
ErrorBoundaryContext,
useErrorBoundary,
} from "react-use-error-boundary";const App = ({ children }) => {
// ... see function body in example above
};
export default (
);
`For a full project example take a look at the example.
Known Limitations ā ļø
Because React recreates the component tree from scratch after catching an error, the component using the
useErrorBoundary hook is always remounted after an error is encountered. This means any state will be reinitialized: useState and useRef hooks will be reinitialized to their initial value and will _not_ persist across caught errors. Any values that need to be preserved across error catching must be lifted into a parent component above the component wrapped in withErrorBoundary`.š² Tree shakeable. Ships ES Modules.
š Zero run time dependencies
𦶠Small footprint 673 B minified and gzipped
šŖ Isomorphic / Universal -- safe to run in any JS context: the browser or on a server
š This library follows semantic versioning
PR's and issues welcomed! For more guidance check out CONTRIBUTING.md
See the project's MIT License.