
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
react-native-notification-badge
Advanced tools
A notification badge count manager for React Native
For when you don't want to use a fully featured notification manager
A very simple notification badge count manager for React Native that just works.
getBadgeCount
Asynchronously returns the current Badge count.
Note: If no notification permissions have been granted yet, this will also ask the user for notification permissions (only [.badge]
), so request permissions before calling this using a library like react-native-permissions
const badgeCount = await getBadgeCount()
getBadgeCountSync
Same as getBadgeCount
, but synchronously.
const badgeCount = getBadgeCountSync()
setBadgeCount
Asynchronously sets the Badge count.
Note: If no notification permissions have been granted yet, this will also ask the user for notification permissions (only [.badge]
), so request permissions before calling this using a library like react-native-permissions
await setBadgeCount(2)
getNotificationBadgeSetting
Asynchronously gets the current state of the "Notification Badge" permission setting.
Possible values are: 'enabled' | 'disabled' | 'notSupported' | 'unknown'
const permission = await getNotificationBadgeSetting()
if (permission === 'enabled') {
await setBadgeCount(5)
} else {
console.log("Badge permission has not yet been granted. I'll ask the user later")
}
requestNotificationPermissions
Asynchronously request the user to grant the specified permissions.
Possible parameter values are: ['badge' | 'alert' | 'sound' | 'carPlay' | 'criticalAlert' | 'providesAppNotificationSettings' | 'provisional' | 'announcement']
const granted = await requestNotificationPermissions(['badge', 'alert', 'sound'])
removeNotificationsWithThreadId
Remove all notification with the given Thread ID from the User's Notification Center.
The Thread ID is a property in the APNS payload which can be used to group notifications in iOS 10.0 or higher.
Returns the count of notifications that were removed.
const removed = await removeNotificationsWithThreadId('group-chat-2')
Check out my other react-native libraries:
FAQs
A notification badge count manager for React Native
The npm package react-native-notification-badge receives a total of 630 weekly downloads. As such, react-native-notification-badge popularity was classified as not popular.
We found that react-native-notification-badge 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.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.