Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.15 KB

README.md

File metadata and controls

31 lines (26 loc) · 1.15 KB

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, 'mike@murphy.com'],
    ['John', 82, 'john@conway.com'],
    ['Sara', 26, 'sara@keegan.com']
  ],
  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.