2.0.2 • Published 7 years ago

pagination-js v2.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

pagination

Pagination for Nodejs

Installation

npm install --save pagination-js

Usage example

route.get('/test', (req, res) => {
    let pagination = (new Pagination(req.query, total)).getPagination();
    res.json(pagination);
});

Test

  • Use postman:
http://localhost:3333/media/test?itemPerPage=16&page=2
  • The result:
{
  "totalItem": 15,
  "page": 2,
  "itemPerPage": 16,
  "minIndex": 16,
  "maxIndex": 32
}
2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago