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
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 🍰
Full documentation of Paginator.js installation, config, API and examples are available on Paginator.js website Paginator.js.