
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-badger
Advanced tools
Simple circular badge that can be attached to some corner of its container.
const Badge = require('react-badger')
const App = () => (
<div style={{ background: '#f5f5f5', position: 'relative' }}>
<Badge />
</div>
)
The component supports the following props:
anchor: defines the corner where the badge will be anchored to in its
containing component. The containing component must have relative CSS
positioning (i.e. position: relative in CSS) for the badge to be positioned
properly unless the anchor is set to inline, in which case the badge will
appear in the document flow like any other block-inlined element.
Currently supported values are: inline, topLeft, topRight, bottomLeft,
and bottomRight. The default value is topRight.
animated: whether the badge should be animated when it appears or
disappears.
color: specifies the color of the badge. You can use anything that
is accepted in CSS for the background-color property.
offset: the offset of the badge from the corner where it is anchored to.
Ignored when the anchor is set to inline. Must be an array of length 2,
containing the horizontal and vertical offsets in CSS notation. (Pixel values
can also be declared as numbers; percentages are allowed).
shadow: whether to put a drop shadow below the badge
visible: whether the badge is visible.
Any additional props are spread to the root <div> of the component.
Children are shown directly in the generated <div>, making it possible
to use children for displaying labels in the badge.
FAQs
Simple React notification badge component
We found that react-badger demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

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.