项目作者: commissure

项目描述 :
:red_circle: A redbox (rsod) component to display your JavaScript errors.
高级语言: JavaScript
项目地址: git://github.com/commissure/redbox-react.git
创建时间: 2015-07-20T15:12:39Z
项目社区:https://github.com/commissure/redbox-react

开源协议:MIT License

下载


redbox-react

Build Status
semantic-release

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

red screen of death

Usage

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

or manually:

  1. import RedBox from 'redbox-react'
  2. const e = new Error('boom')
  3. const box = <RedBox error={e} ></RedBox>

Here is a more useful, full-fleged example:

  1. /* global __DEV__ */
  2. import React from 'react'
  3. import { render } from 'react-dom'
  4. import App from './components/App'
  5. const root = document.getElementById('root')
  6. if (__DEV__) {
  7. const RedBox = require('redbox-react').default
  8. try {
  9. render(<App ></App>, root)
  10. } catch (e) {
  11. render(<RedBox error={e} ></RedBox>, root)
  12. }
  13. } else {
  14. render(<App ></App>, root)
  15. }

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'.