npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@koopjs/koop-provider-hub-search

v3.0.10

Published

A Koop provider plugin to use the ArcGIS Hub Search API as a data source

Downloads

31

Readme

Koop Provider Hub Search

TypeScript version Node.js version APLv2 Build Status - GitHub Actions Coverage

This is a Koop provider that extracts datasets from the ArcGIS Hub Search API.

Use - Streaming All Datasets

This provider plugin currently only supports streaming ALL datasets matching a given search query. It performs searches using the searchContent function from @esri/hub.js and requests all pages from the API in order.

Define Search Parameters

To perform a search from an output plugin, attach an IContentSearchRequest to the response.

req.res.locals.searchRequest = {
  options: {
    site: 'my-site.hub.arcgis.com'
  },
  filter: {
    term: 'some search terms'
  }
};

Notes

A search request must be scoped to include at least one of the following:

  • an "id" (filter: { id: '<id here>' })
  • at least one "group" (filter: { group: ['<group id here>'] })
  • an "orgid" (filter: { orgid: '<or id here>' })
  • a "site" (options: { site: '<site here>' })

If none of the above are provided, an error will be returned. Importantly, if only a site is provided, it is still possible for an error to be returned if the site does not have an organization or group specified as part of its catalog.

Pull the Readable Stream

Then pass the request object to this.model.pullStream.

const docStream = await this.model.pullStream(req);

Full Example

What you have now is a Node.js Readable stream. You can pipe the datasets from the readable through a transform stream in order to format them into some other type of output before sending them back to the browser by piping them to the Express.js response. The following simple example also uses the through2 library to conveniently define a transform stream.

async handleRequest (req, res) {
  req.res.locals.searchRequest = { /* some search params */ };

  const docStream = await this.model.pullStream(req);

  docStream
    .pipe(through2.obj(function (dataset, enc, callback) {
      const transformed = someTranformFunc(dataset);

      // the Express.js "res" Writable only accepts strings or Buffers
      this.push(JSON.stringify(transformed));
      callback();
    }))
    .pipe(res);
}

Develop

# clone and install dependencies
git clone https://github.com/koopjs/koop-output-dcat-ap-201
cd koop-output-dcat-ap-201
npm i

# starts the example Koop app found in ./example-app.
npm run dev

Test

Run the npm t commmand to spin up the automated tests.