![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
paged-request
Advanced tools
Simplified requests for paged (paginated) content.
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.
Install with npm:
$ npm install --save paged-request
See the release notes for information about changes made in v2.0.
This library recursively calls needle's .get
method as long as the user-provided next()
function returns a string (the next url to get). See an example.
Example
const request = require('paged-request');
request(url, options, next)
.then(acc => console.log(acc.pages.length))
.catch(console.error);
url
{string} - (required) the initial url to getoptions
{object} - (optional) options object to pass to needlenext
{function} - (required) function that returns the next url to get, a promise or undefined.next
function paramsurl
{string} - the original (base) user-provided urlresp
{object} - needle response objectacc
{object} - accumulator object with the following properties:
options
{object} - user-provided options objectpages
{array} - array of responsesurls
{array} - array of requested urlsThe next
function should return a string (the next url to get), promise or undefined.
The following example shows how to loop over pages of CSS
posts on smashingmagazine.com (an arbitrary example, but they have great content!).
const request = require('paged-request');
async function next(url, resp, acc) {
// do stuff to check response first if necessary
const regex = /href="\/.*?\/(\d+)\/"/;
const num = (regex.exec(resp.data) || [])[1];
if (num && /^[0-9]+$/.test(num) && +num <= n) {
// use the "original" url to avoid having to reparse
// and recreate the url each time
return `${acc.orig}/page/${num}/`;
}
}
request('https://www.smashingmagazine.com/category/css', {}, next)
.then(acc => console.log(acc.pages.length))
.catch(console.error);
.hrefs
to .urls
in response objectPull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Please read the contributing guide for advice on opening issues, pull requests, and coding standards.
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
You might also be interested in these projects:
Commits | Contributor |
---|---|
12 | jonschlinkert |
9 | doowb |
2 | whitneyit |
Jon Schlinkert
Copyright © 2021, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.8.0, on January 20, 2021.
FAQs
Simplified requests for paged (paginated) content.
The npm package paged-request receives a total of 0 weekly downloads. As such, paged-request popularity was classified as not popular.
We found that paged-request demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.