MCPcopy
hub / github.com/bvaughn/react-error-boundary

github.com/bvaughn/react-error-boundary @6.1.2 sqlite

repository ↗ · DeepWiki ↗ · release 6.1.2 ↗
109 symbols 284 edges 81 files 0 documented · 0%
README

react-error-boundary logo

react-error-boundary: Reusable React error boundary component. Supports all React renderers (including React DOM and React Native).

If you like this project, 🎉 become a sponsor or ☕ buy me a coffee

[!NOTE] Projects using framework or runtimes that don't support ES Modules should use version 5 of this library.

Getting started

# 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 for examples, API reference, and troubleshooting. The docs also include a frequently asked questions guide.

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:

"use client";

import { ErrorBoundary, getErrorMessage } from "react-error-boundary";

export default function App() {
  return (
    <ErrorBoundary
      fallbackRender={({ error, resetErrorBoundary }) => (





Something went wrong:


          <pre>{getErrorMessage(error)}</pre>
          <button onClick={resetErrorBoundary}>Try again</button>



      )}
      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 */}
    </ErrorBoundary>
  );
}

What errors are caught?

This package is built on top of React error boundaries, 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

Async errors

For async 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.
"use client";

import { useTransition } from "react";
import { ErrorBoundary } from "react-error-boundary";

function UserProfileContainer({ username }: { username: string }) {
  return (
    <ErrorBoundary fallback={

Could not load profile

}>
      <UserProfile username={username} />
    </ErrorBoundary>
  );
}

function UserProfile({ username }: { username: string }) {
  const [isPending, startTransition] = useTransition();

  function loadProfile() {
    startTransition(async () => {
      await fetchUserProfile(username);
    });
  }

  return (
    <button disabled={isPending} onClick={loadProfile}>
      {isPending ? "Loading..." : "Load profile"}
    </button>
  );
}

API

ErrorBoundary

A reusable React 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

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 and @types/react. To fix this, ensure that both match exactly, e.g.:

If using NPM:

{
  ...
  "overrides": {
    "@types/react": "17.0.60"
  },
  ...
}

If using Yarn:

{
  ...
  "resolutions": {
    "@types/react": "17.0.60"
  },
  ...
}

This blog post shows more examples of how this package can be used, although it was written for the version 3 API.

Extension points exported contracts — how you extend this code

Matchers (Interface)
(no doc)
vitest.d.ts
EncodedContainerElement (Interface)
(no doc)
integrations/vite/tests/utils/serializer/types.ts
EncodedDisplayModeToggleElement (Interface)
(no doc)
integrations/vite/tests/utils/serializer/types.ts
EncodedGroupElement (Interface)
(no doc)
integrations/vite/tests/utils/serializer/types.ts
EncodedPanelElement (Interface)
(no doc)
integrations/vite/tests/utils/serializer/types.ts
EncodedPopupWindowElement (Interface)
(no doc)
integrations/vite/tests/utils/serializer/types.ts

Core symbols most depended-on inside this repo

getErrorMessage
called by 9
lib/utils/getErrorMessage.ts
render
called by 7
lib/components/ErrorBoundary.tsx
useErrorBoundary
called by 6
lib/hooks/useErrorBoundary.ts
decodeChildren
called by 6
integrations/vite/tests/utils/serializer/decode.ts
encodeChildren
called by 6
integrations/vite/tests/utils/serializer/encode.ts
assert
called by 4
lib/utils/assert.ts
withErrorBoundary
called by 3
lib/utils/withErrorBoundary.ts
encode
called by 3
integrations/vite/tests/utils/serializer/encode.ts

Shape

Function 89
Interface 8
Method 8
Class 4

Languages

TypeScript100%

Modules by API surface

lib/components/ErrorBoundary.tsx9 symbols
integrations/vite/tests/utils/serializer/encode.ts9 symbols
integrations/vite/tests/utils/serializer/decode.ts9 symbols
integrations/vite/tests/utils/serializer/types.ts7 symbols
lib/utils/withErrorBoundary.test.tsx6 symbols
src/routes/examples/TransitionErrors.tsx4 symbols
src/routes/examples/ErrorLogging.tsx3 symbols
src/routes/examples/AsyncUserCodeErrors.tsx3 symbols
lib/hooks/useErrorBoundary.test.tsx3 symbols
vitest.setup.ts2 symbols
src/routes/examples/FallbackComponent.tsx2 symbols
lib/components/ErrorBoundary.test.tsx2 symbols

Dependencies from manifests, versioned

@csstools/postcss-oklab-function4.0.11 · 1×
@eslint/js9.30.1 · 1×
@headlessui/react2.2.4 · 1×
@headlessui/tailwindcss0.2.2 · 1×
@heroicons/react2.2.0 · 1×
@playwright/test1 · 1×
@tailwindcss/vite4.1.11 · 1×
@tailwindplus/elements1.0.5 · 1×
@testing-library/jest-dom6.6.4 · 1×
@testing-library/react16.3.0 · 1×
@testing-library/user-event14.6.1 · 1×
@types/bytes3.1.5 · 1×

For agents

$ claude mcp add react-error-boundary \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact