express-pagination-rbh
v1.0.4
Published
crear paginacion en express
Downloads
2
Readme
install dependency for pagination
npm i express-pagination-rbh
In our project we import the pagination dependency as follows.
const list = require('express-pagination-rbh');
in our view we send the following parameters as follows:
where it receives as limitItems the total number of products to display.
where TotalProducts is the total of products.
where page is the page number.
const limitItems = 56;
const TotalProducts= 11328;
const page= 1;
const result = list.pagination(limitItems,TotalProducts,page);