Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-siren

Package Overview
Dependencies
Maintainers
5
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-siren

React Native module for checking App version and prompting user.

  • 0.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
5
Created
Source

React Native Siren

The React Native port of the popular Siren / Harpy Pod and eventually Gradle

Install

npm install react-native-siren --save
react-native link

Usage

import Siren from 'react-native-siren'

const defaultOptions = {
  title: 'AwesomeApp has a new update!'
}

const versionSpecificRules = [{
  localVersion: '3.0.2',
  forceUpgrade: true,
  title: 'Update your app now',
  message: 'This version contains a bug that might corrupt your data. You must update to be able to use our app.'
}]

Siren.promptUser(defaultOptions, versionSpecificRules)

// or

Siren.performCheck().then(({ updateIsAvailable }) => {
  if (updateIsAvailable) {
    showCustomUpdateModal()
  }
})

Options

valueDescriptiondefault
titleAlert titleUpdate Available
messageAlert MessageThere is an updated version available on the App Store. Would you like to upgrade?
buttonUpgradeTextUpgrade Button TextUpgrade
buttonCancelTextCancel Button TextCancel
forceUpgradeHide Cancel Buttonfalse

Version-specific rules

There might be situations where you'd like to specify rules dynamically based on what version the device is currently running. If so, pass an array as second argument.

valueDescription
localVersionversion currently running on the device
title, message..same options as specified in the Options section

performCheck options

Optional, in some cases it may be necessary to perform a specific check. The app may only be available in some countries, so you need to make explicit the contry code.

valueDescriptiondefault
bundleIdid that identifies the app (ex: com.apple.mobilesafari)DeviceInfo.getBundleId()
countryISO 3166-1 country codeundefined (the API won't filter by country)
TADAAAA!

update

Can't I just use CodePush?

For most things yes, and you should. Sometimes there are limitations to code-push, and you're just stuck shipping a new version when the change is significant. When code-push fails, Siren will help.

One goal of this repo is to eventually work with code-push versions along side actual version changes.

Keywords

FAQs

Package last updated on 15 Jan 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc