Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

paged-request

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paged-request

Simplified requests for paged (paginated) content.

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

paged-request NPM version NPM monthly downloads NPM total downloads Linux Build Status

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

Install with npm:

$ npm install --save paged-request

Usage

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);

Params

  • url {string} - (required) the initial url to get
  • options {object} - (optional) options object to pass to needle
  • next {function} - (required) function that returns the next url to get, a promise or undefined.

next function params

  • url {string} - the original (base) user-provided url
  • resp {object} - needle response object
  • acc {object} - accumulator object with the following properties:
    • options {object} - user-provided options object
    • pages {array} - array of responses
    • urls {array} - array of requested urls

The next function should return a string (the next url to get), promise or undefined.

Example

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');
const isNumber = require('is-number');

async function next(url, resp, acc) {
  // do stuff to check response first if necessary
  const regex = /pagination__next[\s\S]+?href=".*?\/(\d+)\/"/;
  const num = (regex.exec(resp.body) || [])[1];

  // is-number smooths out edge cases, since "num" will be a string
  if (isNumber(num)) {
    return url + `/page/${num}/`;
  }
}

request('https://www.smashingmagazine.com/category/css', {}, next)
  .then(acc => console.log(acc.pages.length))
  .catch(console.error);

About

Contributing

Pull 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 Tests

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
Building docs

(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:

  • gists: Methods for working with the GitHub Gist API. Node.js/JavaScript | homepage
  • github-base: JavaScript wrapper that greatly simplifies working with GitHub's API. | homepage
  • repos: List all repositories for one or more users or orgs. | homepage

Author

Jon Schlinkert

License

Copyright © 2018, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on January 31, 2018.

Keywords

FAQs

Package last updated on 31 Jan 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc