Package Exports
- react-transform-catch-errors
- react-transform-catch-errors/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-transform-catch-errors) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-transform-catch-errors
A React Transform that catches errors inside render() function and renders a React component with an error message instead.
It’s up to you to choose the React component to render an error message. For example, you may use redbox-react that imitates React Native “red screen of death”.
Installation
First, install the Babel plugin:
npm install --save-dev babel-plugin-react-transformThen, install the transform:
npm install --save-dev react-transform-catch-errorsFinally, install the component for rendering errors, for example:
npm install --save-dev redbox-reactYou may also use a custom component instead.
Now edit your .babelrc to include extra.babel-plugin-react-transform.
It must be an array of the transforms you want to use:
{
"stage": 0,
"plugins": [
"react-transform"
],
"extra": {
// must be defined and be an array
"react-transform": [{
"target": "react-transform-catch-errors",
// now go the imports!
// the first import is your React distribution
// (if you use React Native, pass "react-native" instead)
// the second import is the React component to render error
// (it can be a local path too, like "./src/ErrorReporter")
"imports": ["react", "redbox-react/dist/redbox"]
}]
// note: you can put more transforms into array
// this is just one of them!
}
}This transform has no effect when process.env.NODE_ENV is set to 'production'.
License
MIT