🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@shakebugs/react-native-shake

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shakebugs/react-native-shake

Shake SDK wrapper

latest
Source
npmnpm
Version
17.1.3
Version published
Weekly downloads
2.2K
27.74%
Maintainers
1
Weekly downloads
 
Created
Source

Shake React Native SDK

npm version

React Native plugin for bug reporting.

Features

FeatureAvailable
Bug reportingâś…
Crash reporting❌
Usersâś…

Requirements

PlatformVersion
React Native0.56
Android5.0
iOS12.0

*Since 17.1.0 version, Shake RN SDK is using RN new architecture. If your app is running on old architecture you should use Shake RN SDK 17.0.x.

How to use

Install Shake

React Native CLI

Execute the npm install command in your terminal:

npm install @shakebugs/react-native-shake

Install pods from the project root directory:

cd ios && pod install && cd ..

Expo

If you are using Expo, recommended way to install packages is by using expo install command:

npm install @shakebugs/react-native-shake

Shake is not supported in Expo Go, you need to set up development builds in order to use Shake with Expo.

Start Shake

Call Shake.start() method in the index.js file.

import {AppRegistry, Platform} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';
import Shake from '@shakebugs/react-native-shake';

AppRegistry.registerComponent(appName, () => App);

const apiKey = Platform.OS === 'ios' ? 'ios-app-api-key' : 'android-app-api-key';
Shake.start(apiKey);

Replace ios-app-api-key and android-app-api-key with the actual values you have in your app settings.

Resources

  • Official docs

Keywords

shakebugs

FAQs

Package last updated on 21 Aug 2025

Did you know?

Socket

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.

Install

Related posts