
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-simple-countdown
Advanced tools
A simple countdown component with React <3
npm install react-simple-countdown --save
import component:
import CountDown from 'react-simple-countdown';
A string width valid date like isoformat or js dates
Custom component class
##Example
import React from 'react';
import { render } from 'react-dom';
import CountDown from 'react-simple-countdown';
function finish() {
console.log('Countdown finished');
}
function MyComponent() {
// i18n or custom messages
const messages = {
days: {
plural: 'Days',
singular: 'Day',
},
hours: 'Hours',
mins: 'Min',
segs: 'Seg',
}
return (
<CountDown
date="2015-09-12T00:00:00+00:00"
className="MyCoundown"
{...messages}
onEnd={finish}
/>
);
}
render(<MyComponent/>, document.body);
Rendered html output for prop className="MyCountdown"
<div className="MyCountdown">
<div class="MyCountdown-col is-day">
<p><strong>01</strong><span>Days</span></p>
</div>
<div class="MyCountdown-col is-hour">
<p><strong>00</strong><span>Hours</span></p>
</div>
<div class="MyCountdown-col is-min">
<p><strong>00</strong><span>Mins</span></p>
</div>
<div class="MyCountdown-col is-seg">
<p><strong>10</strong><span>Seg</span></p>
</div>
</div>
FAQs
A simple countdown component
The npm package react-simple-countdown receives a total of 19 weekly downloads. As such, react-simple-countdown popularity was classified as not popular.
We found that react-simple-countdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.