
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-help-scout
Advanced tools
Help Scout's Beacon for React Native.
yarn add react-native-help-scout
Please visit https://developer.helpscout.com/beacon-2/ios/#additional-setup and complete the steps
import { Beacon } from 'react-native-help-scout'
// Initialize Beacon
Beacon.init('beacon-id')
// Open Beacon
Beacon.open()
// Open Beacon Secure mode
Beacon.open(signature)
// Set user information in Beacon
Beacon.identify({
email: 'joshuaheywood@live.com',
name: 'Joshua Heywood',
company: 'Megatronic',
jobTitle: 'Marketing Manager',
})
// Unset user information in Beacon
Beacon.logout()
// Navigate to a specific screen (iOS only)
Beacon.navigate('/ask/message/')
// Open with search
Beacon.search('query')
// Open article
Beacon.openArticle('DOCS_ARTICLE_ID')
// Open contact from
Beacon.contactForm()
// Open previous messages (Android only)
Beacon.previousMessages()
// Dismissing the Beacon (iOS only)
Beacon.dismiss(() => console.log('Beacon dismissed'))
// Event handlers
const openHandler = () => console.log('Beacon opened')
Beacon.events.on('open', openHandler)
Beacon.events.off('open', openHandler)
Beacon.events.off('open')
Beacon.events.once('open', () => console.log('This will only get called the first time the open event is triggered'))
const closeHandler = () => console.log('Beacon closed')
Beacon.events.on('close', closeHandler)
Beacon.events.off('close', closeHandler)
Beacon.events.off('close')
Beacon.events.once('close', () => console.log('This will only get called the first time the close event is triggered'))
FAQs
Help Scout's Beacon for React Native
We found that react-native-help-scout demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.