redbox-react

:red_circle: A redbox (rsod) component to display your JavaScript errors.

Github星跟蹤圖

redbox-react

Build Status
semantic-release

The red box (aka red screen of death) renders an error in this “pretty” format:

Usage

Catch an error and give it to redbox-react. Works great with

or manually:

import RedBox from 'redbox-react'

const e = new Error('boom')
const box = <RedBox error={e} />

Here is a more useful, full-fleged example:

/* global __DEV__ */
import React from 'react'
import { render } from 'react-dom'
import App from './components/App'

const root = document.getElementById('root')

if (__DEV__) {
  const RedBox = require('redbox-react').default
  try {
    render(<App />, root)
  } catch (e) {
    render(<RedBox error={e} />, root)
  }
} else {
  render(<App />, root)
}

What Is This Good For?

An error that's only in the console is only half the fun. Now you can
use all the wasted space where your app would be if it didn’t crash to
display the error that made it crash.

Please use this in development only.

Will this catch errors for me?

No. This is only a UI component for rendering errors and their stack
traces. It is intended to be used with with other existing solutions
that automate the error catching for you. See the list at the top of
this document or take a look at the examples.

Optional Props

The RedBox component takes a couple of props that you can use to
customize its behaviour:

editorScheme [?string]

If a filename in the stack trace is local, the component can create the
link to open your editor using this scheme eg:

  • subl to create
    subl://open?url=file:///filename.
  • or vscode to create
    vscode://file/filename.

useLines [boolean=true]

Line numbers in the stack trace may be unreliable depending on the
type of sourcemaps. You can choose to not display them with this flag.

useColumns [boolean=true]

Column numbers in the stack trace may be unreliable depending on the
type of sourcemaps. You can choose to not display them with this flag.

style [?object]

Allows you to override the styles used when rendering the various parts of the
component. It will be shallow-merged with the default styles.

If you’re using react-transform-catch-errors you can add these
options to your .babelrc through the imports property.

Sourcemaps With Webpack

If you’re using Webpack you can get
accurate filenames in the stacktrace by setting the
output.devtoolModuleFilenameTemplate settings to /[absolute-resource-path].

It's recommended to set the devtool setting to 'eval'.

主要指標

概覽
名稱與所有者commissure/redbox-react
主編程語言JavaScript
編程語言JavaScript (語言數: 2)
平台
許可證MIT License
所有者活动
創建於2015-07-20 15:12:39
推送於2022-12-06 16:30:21
最后一次提交2018-04-22 21:19:46
發布數33
最新版本名稱v1.6.0 (發布於 )
第一版名稱v1.0.0 (發布於 )
用户参与
星數687
關注者數7
派生數76
提交數100
已啟用問題?
問題數50
打開的問題數11
拉請求數39
打開的拉請求數3
關閉的拉請求數30
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?