Gathering detailed insights and metrics for react-simple-paginator
Gathering detailed insights and metrics for react-simple-paginator
Gathering detailed insights and metrics for react-simple-paginator
Gathering detailed insights and metrics for react-simple-paginator
react-js-pagination
Simple, easy to use component for pagination. Compatible with bootstrap paginator stylesheets
simple-react-paginator
Simple react paginator
@vtaits/react-paginator
Simple customizable pagination component for react applications
@careerday-jobs/react-paginator
Simple and easy-to-use pagination library for React
npm install react-simple-paginator
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
26 Commits
1 Watchers
2 Branches
1 Contributors
Updated on Mar 04, 2023
Latest Version
2.0.3
Package Id
react-simple-paginator@2.0.3
Unpacked Size
158.40 kB
Size
43.97 kB
File Count
6
NPM Version
7.5.2
Node Version
15.8.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
npm install react-simple-paginator
1import React from 'react'; 2import Paginator from 'react-simple-paginator'; 3 4export const Basic = () => { 5 const totalPage = 10; 6 const [currentPage, setCurrentPage] = useState(1); 7 useEffect(()=>{ 8 // fetch data and update your page data source here 9 },[currentPage]) 10 return ( 11 <> 12 <h2>show content for page {currentPage}</h2> 13 <Paginator 14 totalPageNumber={totalPage} 15 currentPageNumber={currentPage} 16 onPageNavigation={(page) => () => { 17 setCurrentPage(page); 18 }} 19 /> 20 </> 21 ); 22};
see this
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 0/26 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
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
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
64 existing vulnerabilities detected
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