百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
R

react-error-boundary

> 编程语言
开源

简单的可重用的 React 错误边界组件

8.0K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

简单的可重用的 React 错误边界组件

`react-error-boundary`: Reusable React [error boundary](https://react.dev/reference/react/Component#catching-rendering-errors-with-an-error-boundary) component. Supports all React renderers (including React DOM and React Native). ### If you like this project, [become a sponsor](https://github.com/sponsors/bvaughn/) or ☕ [buy me a coffee](http://givebrian.coffee/) > [!NOTE] > Projects using framework or runtimes that don't support ES Modules should use version 5 of this library. ## Getting started ```sh # npm npm install react-error-boundary # pnpm pnpm add react-error-boundary # yarn yarn add react-error-boundary ``` ## Documentation Read the [react-error-boundary docs](https://react-error-boundary-lib.vercel.app/) for examples, API reference, and troubleshooting. The docs also include a [frequently asked questions guide](https://react-error-boundary-lib.vercel.app/common-questions). ## Quick start Wrap an `ErrorBoundary` around the part of the tree where you want to show a fallback UI if rendering fails. Your fallback can call `resetErrorBoundary` to clear the error and retry rendering: ```tsx "use client"; import { ErrorBoundary, getErrorMessage } from "react-error-boundary"; export default function App() { return ( ( )} onError={(error, info) => { // Log the error to your error reporting service }} onReset={() => { // Reset any state that may have caused the error }} > {/* Components protected by this boundary */} ); } ``` ## What errors are caught? This package is built on top of React [error boundaries](https://react.dev/reference/react/Component#catching-rendering-errors-with-an-error-boundary), so it follows React's rules for what errors are caught. Error boundaries catch errors thrown while rendering the tree below them. Error boundaries do not catch errors thrown during: - Server side rendering - Event handlers - Errors thrown in the error boundary itself - Async code that runs after rendering, like `setTimeout` callbacks or unresolved promises ## Event handler and async errors For event handler errors and async callback errors: - Use `useErrorBoundary` to pass caught errors to the nearest boundary. - In React 19, `useTransition` Actions can be an alternative: errors thrown from a function passed to the returned `startTransition` function are caught by the nearest boundary. ``` … ``` ## API ### ErrorBoundary A reusable React [error boundary](https://react.dev/reference/react/Component#catching-rendering-errors-with-an-error-boundary) component. Wrap this component around other React components to "catch" errors and render a fallback UI. Catches errors thrown while rendering the tree below it. Does not catch errors thrown during: - Server side rendering - Event handlers - Errors thrown in the error boundary itself - Async code that runs after rendering, like `setTimeout` callbacks or unresolved promises Event handler and async errors: - Use `useErrorBoundary` to pass caught errors to the nearest boundary - In React 19, errors thrown from a function passed to the `startTransition` function returned by `useTransition` are caught by the nearest boundary ℹ️ The component provides several ways to render a fallback: `fallback`, `fallbackRender`, and `FallbackComponent`. Refer to the documentation to determine which is best for your application. ℹ️ This is a **client component**. You can only pass props to it that are serializable or use it in files that have a `"use client";` directive. #### Required props None #### Optional props
Name Description
onError

Optional callback to enable e.g. logging error information to a server. @param error Value that was thrown; typically an instance of Error @param info React "component stack" identifying where the error was thrown

onReset

Optional callback to be notified when an error boundary is reset so React can retry the failed render.

resetKeys

When changed, these keys will reset a triggered error boundary. This can be useful when an error condition may be tied to some specific state (that can be uniquely identified by key). See the documentation for examples of how to use this prop.

fallback

Static content to render in place of an error if one is thrown.

<ErrorBoundary fallback={<div className="text-red">Something went wrong</div>} />
FallbackComponent

React component responsible for returning a fallback UI based on a thrown value.

<ErrorBoundary FallbackComponent={Fallback} />
fallbackRender

Render prop function responsible for returning a fallback UI based on a thrown value.

<ErrorBoundary fallbackRender={({ error, resetErrorBoundary }) => <div>...</div>} />
# FAQ ## `ErrorBoundary` cannot be used as a JSX component This error can be caused by a version mismatch between [react](https://npmjs.com/package/react) and [@types/react](https://npmjs.com/package/@types/react). To fix this, ensure that both match exactly, e.g.: If using NPM: ```json { ... "overrides": { "@types/react": "17.0.60" }, ... } ``` If using Yarn: ```json { ... "resolutions": { "@types/react": "17.0.60" }, ... } ``` --- [This blog post](https://kentcdodds.com/blog/use-react-error-boundary-to-handle-errors-in-react) shows more examples of how this package can be used, although it was written for the [version 3 API](https://github.com/bvaughn/react-error-boundary/releases/tag/v3.1.4).

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

TypeScript

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言