@carry0987/paginator
Version:
An advanced pagination library
33 lines (27 loc) • 1.18 kB
Markdown
# Paginator-JS
[](https://www.npmjs.com/package/@carry0987/paginator)

**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
```js
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 :cake:
## Getting Started
- [Install](https://carry0987.github.io/Paginator-JS/docs/install)
- [Getting Started](https://carry0987.github.io/Paginator-JS/docs/)
- [Examples](https://carry0987.github.io/Paginator-JS/docs/examples/hello-world)
## Documentation :book:
Full documentation of Paginator.js installation, config, API and examples are available
on Paginator.js website [Paginator.js](https://carry0987.github.io/Paginator-JS/).