← All @molecule/* packages · App templates
@molecule/app-root-error-boundary-reactFeature · error-boundary · App (browser) · v1.0.1 · Apache-2.0
Top-level React error boundary that logs render errors via the bonded app logger and shows a minimal localized recovery surface
npm install @molecule/app-root-error-boundary-react@molecule/app-root-error-boundary-react is a ready-made error-boundary feature for the app (browser) side. It composes the core interfaces it needs, so it works with whichever providers your app has bonded.
import type { ReactNode } from 'react'
import { RootErrorBoundary } from '@molecule/app-root-error-boundary-react'
function AppRoot({ children }: { children: ReactNode }) {
return <RootErrorBoundary>{children}</RootErrorBoundary>
}Works with: @molecule/app-i18n, @molecule/app-logger, @molecule/app-ui
Auto-generated, AI-first package reference for the molecule.dev ecosystem. It is written to be read by coding agents as much as by people, and is generated from this package's source — edit
src/index.tsJSDoc, not this file.
Top-level React error boundary that catches render errors, logs them via
the bonded @molecule/app-logger, and shows a minimal localized fallback
message through @molecule/app-i18n.
Exports <RootErrorBoundary> (class component; children is the only
prop). Mount it directly under your routing root so it covers the whole
route tree.
import type { ReactNode } from 'react'
import { RootErrorBoundary } from '@molecule/app-root-error-boundary-react'
function AppRoot({ children }: { children: ReactNode }) {
return <RootErrorBoundary>{children}</RootErrorBoundary>
}
feature
npm install @molecule/app-root-error-boundary-react @molecule/app-i18n @molecule/app-logger @molecule/app-ui react
npm install -D @types/react
RootErrorBoundaryTop-level React error boundary that catches render errors, logs them via
the bonded @molecule/app-logger, and falls back to a minimal recovery
surface localized through @molecule/app-i18n.
Use this directly under your routing root so it covers the whole route tree.
Peer dependencies:
@molecule/app-i18n ^1.0.1@molecule/app-logger ^1.0.1@molecule/app-ui ^1.0.1react ^18.0.0 || ^19.0.0@molecule/app-i18n
@molecule/app-logger
@molecule/app-ui
react
The fallback UI styles itself via getClassMap() — if no ClassMap is
bonded the boundary itself throws while rendering the fallback. Ensure
setClassMap() runs during bootstrap, before anything can error.
There is no retry/reload action — the fallback is a static message
(key error.unknown). Wrap or fork when you need a recovery button.
React error boundaries catch RENDER errors only — not event handlers, async code, or server-side rendering errors.
Uses the core t() from @molecule/app-i18n (not the React hook), so
no I18nProvider is required; without locale registration it falls back
to English. Translations: @molecule/app-locales-root-error-boundary.
Translation strings are provided by @molecule/app-locales-root-error-boundary.