Skip to content

carry0987/Paginator-JS

Repository files navigation

Paginator-JS

version CI

A pagination library that works everywhere

  • Simple and lightweight implementation
  • No vendor lock-in. Pagination.js can be used with any JavaScript frameworks (React, Angular, Preact or VanillaJS)
  • Written in TypeScript
  • Supports all modern browsers

Example

new Paginator({
  data: [
    ['Mike', 33, '[email protected]'],
    ['John', 82, '[email protected]'],
    ['Sara', 26, '[email protected]']
  ],
  columns: ['Name', 'Age', 'Email']
}).render(document.getElementById('wrapper'));

Piece of 🍰

Getting Started

Documentation 📖

Full documentation of Paginator.js installation, config, API and examples are available on Paginator.js website Paginator.js.