2.0.2 • Published 9 years ago

pagination-js v2.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
9 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

9 years ago

2.0.1

9 years ago

2.0.0

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago