pgsn

1.1.3 • Public • Published

pgsn Pagination

pgsn is a node.js utils for handling pagination.

Installation

  npm install --save pgsn

Usages

   const { PGSN } = require("pgsn");


   try {
    const response = PGSN.getPagingData({
        rows: [
            { name: 'test1', email: 'test1@gmail.com' },
            { name: 'test2', email: 'test2@gmail.com' },
        ], // rows data must be a array
        totalItems: 5,  // totalItems must be a number
        page: 1, // page must be a number
        limit: 2 // limit must be a number
    })

    console.log(response)
}catch(error) {
    console.log(error)
}

Authors

Hi, I'm Vivek Methew! 👋

Keywords

Package Sidebar

Install

npm i pgsn

Weekly Downloads

5

Version

1.1.3

License

ISC

Unpacked Size

14.5 kB

Total Files

6

Last publish

Collaborators

  • vivek-dev