🚀 Socket Launch Week 🚀 Day 4: Introducing Historical Analytics.Learn More
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pgsn

pgsn is a node.js utils for handling pagination.

1.1.3
latest
Version published
Weekly downloads
6
-33.33%
Maintainers
1
Weekly downloads
 
Created

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

FAQs

Package last updated on 27 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts