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

@natlibfi/sru-client

v6.0.10-alpha.3

Published

SRU Javascript client library

Downloads

1,169

Readme

SRU Javascript client library NPM Version

This library implements a client to retrieve records via Search/Retrieve via URL (SRU) API.

Usage

Retrieve all records

import createClient from '@natlibfi/sru-client';
const client = createClient({url: 'https://foo.bar', recordSchema: 'marcxml'});

client.searchRetrieve('foo')
  .on('record', record => processRecord(string))
  .on('total', totalNumberOfRecords => doSomething(totalNumberOfRecords))
  .on('end', () => endProcessing())
  .on('error', err => handleError(err));

Retrieve records only from the first response

import createClient from '@natlibfi/sru-client';
const client = createClient({url: 'https://foo.bar', recordSchema: 'marcxml', retrieveAll: false});

client.searchRetrieve('foo')
  .on('record', record => processRecord(record))
  .on('total', totalNumberOfRecords => doSomething(totalNumberOfRecords))
  .on('end', nextRecordOffset => endProcessing(nextRecordOffset))
  .on('error', err => handleError(err));

Retrieve total amount of records

import createClient from '@natlibfi/sru-client';
const client = createClient({url: 'https://foo.bar', recordSchema: 'marcxml', maxRecordsPerRequest: 0, retrieveAll: false});

client.searchRetrieve('foo')
  .on('total', totalNumberOfRecords => doSomething(totalNumberOfRecords))
  .on('end', () => endProcessing())
  .on('error', err => handleError(err));

Configuration

Client creation options

  • url: The URL of the SRU service.
  • recordSchema: Schema of the records. Mandatory.
  • version: SRU version. Defaults to 2.0.
  • maxRecordsPerRequest: Maximum number of records to retrieve per requests. Defaults to 1000. If maxRecordsPerRequest is set to 0 search does not retrieve any records. The total event returns still the total number of records available for search.
  • recordFormat: Format of the record argument in record event. Can be string (default) or object (XML parsed by xml2js).
  • retrieveAll: Whether to retrieve all records or just from the first response. If false, the end event return the offset of the next record for the query. The total event returns still the total number of records available for search.

searchRetrieve options:

The first parameter is the mandatory CQL query string. Second is an optional object which supports the following properties:

  • startRecord: The offset of the record from which to start fetching results from. See retrieveAll of the client creation options.
  • recordSchema: Override default record schema

Notes

  • The totalNumberOfRecords returned by the total event is limited to the maximum number of records provided by server. Ie. if the SRU servers limit for search and retrieve is 20 000 records, 20 000 is the maximum totalNumberOfRecords available, even if the server's database actually contains more records matching the query.

  • The library uses module debug to optionally emit debugging information.

  • Cli use needs enviroment variable SRU_URL

License and copyright

Copyright (c) 2015, 2017-2018, 2020-2024 University Of Helsinki (The National Library Of Finland)

This project's source code is licensed under the terms of MIT.