Gathering detailed insights and metrics for @rumess/react-flip-countdown
Gathering detailed insights and metrics for @rumess/react-flip-countdown
Gathering detailed insights and metrics for @rumess/react-flip-countdown
Gathering detailed insights and metrics for @rumess/react-flip-countdown
DEPRECATED ⛔️ The React Flip Countdown Component.
npm install @rumess/react-flip-countdown
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (72.32%)
SCSS (20.81%)
HTML (6.32%)
CSS (0.55%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
37 Stars
49 Commits
24 Forks
2 Watchers
3 Branches
3 Contributors
Updated on May 27, 2024
Latest Version
1.2.6
Package Id
@rumess/react-flip-countdown@1.2.6
Unpacked Size
238.46 kB
Size
50.16 kB
File Count
3
NPM Version
8.5.5
Node Version
16.15.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1
36
The React Flip Countdown Component.
Using npm:
1npm install @rumess/react-flip-countdown
Using yarn:
1yarn add @rumess/react-flip-countdown
1import React, { Component } from 'react'; 2 3import FlipCountdown from '@rumess/react-flip-countdown'; 4 5class ExampleBasic extends Component { 6 render() { 7 return ( 8 <FlipCountdown 9 endAt={'2022-12-12 01:26:58'} // Date/Time 10 /> 11 ); 12 } 13}
1import React, { Component } from 'react'; 2 3import FlipCountdown from '@rumess/react-flip-countdown'; 4 5class ExampleSize extends Component { 6 render() { 7 return ( 8 <FlipCountdown 9 size='large' // Options (Default: medium): large, medium, small, extra-small. 10 endAt={'2022-12-12 01:26:58'} // Date/Time 11 /> 12 ); 13 } 14}
1import React, { Component } from 'react'; 2 3import FlipCountdown from '@rumess/react-flip-countdown'; 4 5class ExampleTheme extends Component { 6 render() { 7 return ( 8 <FlipCountdown 9 theme='dark' // Options (Default: dark): dark, light. 10 endAt={'2022-12-12 01:26:58'} // Date/Time 11 /> 12 ); 13 } 14}
1import React, { Component } from 'react'; 2 3import FlipCountdown from '@rumess/react-flip-countdown'; 4 5class ExampleTitlePosition extends Component { 6 render() { 7 return ( 8 <FlipCountdown 9 titlePosition='top' // Options (Default: top): top, bottom. 10 endAt={'2022-12-12 01:26:58'} // Date/Time 11 /> 12 ); 13 } 14}
1import React, { Component } from 'react'; 2 3import FlipCountdown from '@rumess/react-flip-countdown'; 4 5class ExampleChangeTitle extends Component { 6 render() { 7 return ( 8 <FlipCountdown 9 yearTitle='Year' 10 monthTitle='Months' 11 dayTitle='Days' 12 hourTitle='Hours' 13 minuteTitle='Minutes' 14 secondTitle='Seconds' 15 endAt={'2022-12-12 01:26:58'} // Date/Time 16 /> 17 ); 18 } 19}
1import React, { Component } from 'react'; 2 3import FlipCountdown from '@rumess/react-flip-countdown'; 4 5class ExampleHideSection extends Component { 6 render() { 7 return ( 8 <FlipCountdown 9 hideYear 10 hideMonth 11 hideDay 12 // hideHour 13 // hideMinute 14 // hideSecond 15 endAt={'2022-12-12 01:26:58'} // Date/Time 16 /> 17 ); 18 } 19}
1import React, { Component } from 'react'; 2 3import FlipCountdown from '@rumess/react-flip-countdown'; 4 5class ExampleHideSection extends Component { 6 render() { 7 return ( 8 <FlipCountdown 9 endAtZero 10 endAt={'2022-12-12 01:26:58'} // Date/Time 11 /> 12 ); 13 } 14}
1import React, { Component } from 'react'; 2 3import FlipCountdown from '@rumess/react-flip-countdown'; 4 5class ExampleHideSection extends Component { 6 render() { 7 return ( 8 <FlipCountdown 9 endAt={'2022-12-12 01:26:58'} // Date/Time 10 onTimeUp={() => console.log("Time's up ⏳")} 11 /> 12 ); 13 } 14}
MIT © rumess
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 1/21 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More