
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
react-native-crash-tester
Advanced tools
Deliberately crash your app. Good for testing crash reporting services.
Deliberately crash your app. Good for testing crash reporting services.
npm install react-native-crash-tester
or
yarn add react-native-crash-tester
import CrashTester from 'react-native-crash-tester';
CrashTester.nativeCrash();
CrashTester.nativeCrash('Custom message!');
import CrashTester from 'react-native-crash-tester';
CrashTester.jsCrash();
CrashTester.jsCrash('Custom message!');
import * as React from 'react';
import { Button } from 'react-native';
import { CrashingComponent } from 'react-native-crash-tester';
import ErrorBoundary from './MyErrorBoundary';
function TestComponent() {
const [shown, setShown] = React.useState(false);
<ErrorBoundary>
<Button title="Crash" onPress={() => setShown(true)} />
{shown && <CrashingComponent />}
</ErrorBoundary>;
}
You can run the app in ./example
to see sample usage.
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
Deliberately crash your app. Good for testing crash reporting services.
The npm package react-native-crash-tester receives a total of 985 weekly downloads. As such, react-native-crash-tester popularity was classified as not popular.
We found that react-native-crash-tester demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.