v2.0.0 Now Available

ERROR NARRATOR

Stop context switching between your UI and the console. Hear your bugs before you see them.

Scroll to Debug

Experience It Live

This demo uses your browser's TTS engine to simulate the error-narrator package.

System Normal. Click a trigger above to simulate a crash.

Installation

Get started in seconds. Zero heavy dependencies.

Package Manager

npm install error-narrator
yarn add error-narrator
pnpm add error-narrator

Usage

import { ErrorNarratorProvider } from 'error-narrator';

function App() {
  return (
    <>
      <ErrorNarratorProvider
        options={enabled: true}
      />
      <MyComponent  />
    </ErrorNarratorProvider>
    </>
  );
}