Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@ssense/node-paginator
Advanced tools
Paginator library in NodeJS to facilitate REST pagination
npm install --save @ssense/node-paginator
import { Paginator } from '@ssense/node-paginator';
const items = ['item1', 'item2', 'item3']; // from your DB returned collection...
const perPage = 1;
const currentPage = 2;
const paginator: Paginator = new Paginator(items, items.length, perPage, currentPage);
// Transform paginator to object, use this as rour REST response
const paginated = paginator.transform();
console.log(paginated);
/*
output
{
total: 3,
per_page: 1,
current_page: 2,
last_page: 3,
from: 2,
to: 4,
links:{
previous: '/?page=1&foo=bar#foobar',
current: '/?page=2&foo=bar#foobar',
next: '/?page=3&foo=bar#foobar'
},
data: [ 'item1', 'item2', 'item3' ]
}
*/
// Append one query string to URL
paginator.append('key', 'value');
// Appends multiple queries to URL
paginator.appends({
foo: 'bar'
});
// Add foobar fragment to URL
paginator.fragment('foobar');
This project is licensed under the MIT License - see the LICENSE.md file for details.
FAQs
Paginator
We found that @ssense/node-paginator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.