Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@matrixai/pagination
Advanced tools
Offset pagination relies on a seek and limit number.
Consider the resource we are paginating is:
['A', 'B', 'C', 'D']
The seek index starts at 0.
The limit is the desired length of the returned pagination view.
A seek and limit of [0, 2]
would return ['A', 'B']
.
Page numbers start from 1. However we refer to them with a page index that starts at 0.
The total represents the total number of items when the pagination was fetched. The true total of items may have changed on the server side since fetching a pagination.
Cursor pagination relies on unique orderable seek key.
Consider the resource we are paginating is:
['A', 'B', 'C', 'D']
Assume that the seek key is [0, 1, 2, 3]
:
order = true
, seek = 0
and limit = 2
, you would get ['B', 'C']
.order = false
, seek = 2
and limit = 2
, you would get ['A', 'B']
.order = null
, seekAfter = 1
, seekBefore = 3
, you would get ['C']
.Cursor pagination does not allow random access of the pages. You can however randomly access if you know the seek key you want.
type='patch'
npm run build
npm version $type
npm publish
FAQs
Offset-based and cursor-based pagination utilities
We found that @matrixai/pagination demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.