npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@peter.naydenov/pager

v1.0.3

Published

A library to split results into multiple pages

Downloads

77

Readme

Pager (@peter.naydenov/pager)

version license language npm package minimized gzipped size (select exports)

A library to split results into multiple pages. The module works with data, doesn't provide any UI, and is easy to use.

Installation

Write in a console:

npm install @peter.naydenov/pager

From your javascript or node.js project:


// in es6 project
import pager from '@peter.naydenov/pager'

// or in commonjs project
const pager = require ('@peter.naydenov/pager')

Usage

import pager from '@peter.naydenov/pager'
const initData = [ 'init1', 'init2' ];
const data = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]
const pages = pager ( initData )

pages.push ( data ) // extend initial array with new data
// pages -> [ 'init1', 'init2', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]
const items = pages.getSize () // count number of items in result array
// items -> 12
const count = pages.countPages ( 5 ) // count number of pages if 5 items per page
// count -> 3
const page2 = pages.get ( 2, 5 ) // get a page 2 if page contains 5 items
// page2 -> [ 4, 5, 6, 7, 8 ]
const page3 = pages.get ( 3, 5 ) // get a page 3 if page contains 5 items
// page3 -> [ 9, 10 ]

Pager Methods

  push       : 'Insert a new item to the results array'
, get        : 'Get a page from results array'
, getSize    : 'Count the number of items in results array'
, countPages : 'Calculate the number of pages'

Pager Object API

Create a pager object with the pager function.

const pageObject = pager ( initialResultsArray );
// initialArray -> Any[]

pagerObject.push ()

Insert a new item(s) to the results array:

pageObject.push ( item ) // Insert a single item
pageObject.push ( [ item1, item2 ] ) // Insert many items to the results array
// item, item1, item2 -> Any

pagerObject.get ()

Get a page from results array

pageObject.get ( pageNumber, pageSize, offset ) // Get a page from results array
// pageNumber -> Number. Default: 1. Number of the page
// pageSize -> Number. Default: 20. Number of items per page
// offset -> Number. Default: 0. Number of items to skip before starting the page
// return -> Any[]. Array of items for specified page segment

pagerObject.getSize ()

Count the number of items in results array

pageObject.getSize () // Count the number of items in results array
// return -> Number

pagerObject.countPages ()

Calculate the number of pages

pageObject.countPages ( pageSize ) // Calculate the number of pages
// pageSize -> Number. Default: 20. Number of items per page
// return -> Number. Number of pages

Credits

'@peter.naydenov/pager' was created and supported by Peter Naydenov.

License

'@peter.naydenov/pager' is released under the MIT License.