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

almarestapi-lib

v1.1.9

Published

A Node.js library for calling Ex Libris Alma REST APIs

Downloads

9

Readme

Alma REST API Node Library

This library makes it easy to call the Ex Libris Alma REST APIs in Node.js.

Installation

npm install almarestapi-lib --save

API Key

The library expects that the API key be available in an environment variable called ALMA_APIKEY. The API host can be optionally stored in an environment variable called ALMA_APIHOST. The defaut is https://api-na.hosted.exlibrisgroup.com/almaws/v1.

You can call your script with the API key in the command line, as follows:

ALMA_APIKEY=l7xxabcdefghijklmnopqrstuvwxyz node test.js 

Alternatively, the key and/or path can be set using the setOptions method, as follows:

const alma = require('almarestapi-lib');
alma.setOptions('l7xx...');

Usage

To being using the library, require it at the top of your Node file:

var alma = require ('almarestapi-lib');

Async/Await

The library supports usage of async/await. The functions which return a Promise end in the letter 'p', i.e. getp.

var alma = require ('almarestapi-lib');

async function main() {
  try {
    console.log(await alma.getp('/users/joshw?view=brief'));
  } catch (e) {
    console.error('ERROR: ', e.message);
  }
}

main();

Working with JSON

The following functions work with JSON:

Retrieving JSON with getp

await alma.getp('/users/joshw?view=brief');

Updating JSON with putp

var user = await alma.getp('/users/joshw');
user.middle_name = 'Max';
console.log(await alma.putp('/users/joshw', user);

Creating a record with postp

var user = { first_name: 'Josh', last_name: 'Testman', account_type:{value: 'INTERNAL'}};
console.log(await alma.postp('/users', user));

Deleting with deletep

alma.deletep('/users/4101979450000561');

Working with XML

It is preferable to work with XML when calling APIs which relate to BIB records. You can use the XML functions to work with these APIs.

Retrieving a BIB record with getXmlp

var bib = await alma.getXmlp('/bibs/9981140900561');

Updating and creating a BIB record You can use the putXmlp and postXmlp functions to update and create BIB records respectively.

var dom        = require('xmldom').DOMParser;
var xpath      = require('xpath');
const XPATH_TITLE = '/bib/record/datafield[@tag="245"]/subfield[@code="a"]';

var bib = await alma.getXmlp('/bibs/991439870000541');
bib = new dom().parseFromString(bib);
xpath.select(XPATH_TITLE, bib)[0]
  .firstChild.data='History curatorship';
console.log(await alma.putXmlp('/bibs/991439870000541', bib));      

Issues

Feel free to report issues in this repository.