react-native-a-beep

A very lite module to play system sounds and beep for react-native apps (no sound files)

Usage no npm install needed!

<script type="module">
  import reactNativeABeep from 'https://cdn.skypack.dev/react-native-a-beep';
</script>

README

react-native-a-beep

A very lite module to play system sounds and beep for react-native apps (no sound files)

Sponsor by

Go Noter app - Group travel and expenses assistant!

Install

npm install "react-native-a-beep"

(RN < 0.60) Mostly automatic installation

$ react-native link react-native-a-beep

Usage

import RNBeep from 'react-native-a-beep';

Examples:

<Button onPress={ () => {RNBeep.beep()} } title="Beep Success"></Button>
<Button onPress={ () => {RNBeep.beep(false)} } title="Beep Fail"></Button>
<Button onPress={ () => {RNBeep.PlaySysSound(RNBeep.AndroidSoundIDs.TONE_CDMA_ABBR_ALERT)} } title="Beep Android Custom"></Button>
<Button onPress={ () => {RNBeep.PlaySysSound(41)} } title="Beep Something"></Button>
<Button onPress={ () => {RNBeep.PlaySysSound(RNBeep.iOSSoundIDs.AudioToneBusy)} } title="Beep iOS Custom"></Button>

Happy Beep!

FREE!