Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
react-notification-badge
Advanced tools
Simple notification badge react component
npm install --save react-notification-badge
NotificationBadge
NotificationBadge.propTypes = {
count: React.PropTypes.number,
label: React.PropTypes.string,
containerStyle: React.PropTypes.object,
style: React.PropTypes.object,
className: React.PropTypes.string,
effect: React.PropTypes.array,
duration: React.PropTypes.number
};
count
: Badge count, if count < 1
, badge will not shown.
label
: Badge label will be rendered instead of count.
containerStyle
: custom style of container
style
: custom style of badge
className
: className of badge
effect
: effect of notification.
effect array should be [string, string, object, object]
.
effect[0]
will be applied to transform
on first frame.
effect[1]
will be applied to transform
on frameLength
.
effect[2]
will be applied as style[key] = value
on first frame.
effect[3]
will be applied to style[key] = value
on frameLength
.
Pre defined effect is available as
Effect.ROTATE_X
Effect.ROTATE_Y
Effect.SCALE
frameLength
: Frame length for effect[1]
and effect[3]
(default 30.0, 60.0fps/30.0 = 0.5 second)
import NotificationBadge from 'react-notification-badge';
import {Effect} from 'react-notification-badge';
<div style={container}>
<NotificationBadge count={this.state.count} effect={Effect.SCALE}/>
</div>
See example
npm install
npm run start:example
npm test
FAQs
Simple notification badge react component
We found that react-notification-badge demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.