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

@ucd-lib/fin-node-api

v0.14.2

Published

NodeJS API for interacting with the FIN Fedora instance

Downloads

27

Readme

Classes

Members

Functions

FinApi

Kind: global class

new FinApi()

FIN API class

Many classes return a promise with a object that looks like {response, body, authenticated} where

  • response: HTTP response object
  • body: HTTP body contents
  • authenticated: boolean flag if a JWT token was sent along with the request

RDF_FORMATS : Object

JSON_LD: application/ld+json N_TRIPLES: application/n-triples RDF_XML: application/rdf+xml SPARQL_UPDATE: application/sparql-update N3: text/n3 PLAIN: text/plain TURTLE: text/turtle

Kind: global variable

FILE_EXTENSIONS : Object

.json: application/ld+json .nt: application/n-triples .xml: application/rdf+xml .n3: text/n3 .txt: text/plain .ttl: text/turtle

Kind: global variable

GET_JSON_ACCEPT : Object

Optional Accept HTTP header values for GET request of Content-Type=application/ld+json

Kind: global variable

GET_PREFER : Object

Optional Prefer HTTP header values for GET request

Kind: global variable

PUT_PEFER : Object

Optional Prefer HTTP header values for PUT request. Allows replacing the properties of a container without having to provide all of the server-managed triples.

Kind: global variable

acl : class

set of functions for interacting with fin webac.

Kind: global variable

service : class

set of functions for interacting with fin services.

Kind: global variable

transform : Object

util functions for turtle, json-ld and sparql transforms

Kind: global variable

setConfig(params)

Set the API config

To make authenticated requests you should supply either a username/refreshToken or username/password combo. Then if a JWT doesn't exist or is expired, the request function will fetch a new JWT before the request is made.

Kind: global function

| Param | Description | | --- | --- | | params | key/value pairs to set | | params.host | FIN host ex. http://mydams.org | | params.fcBasePath | Fedora base path (default: /fcrepo/rest) | | params.jwt | JWT Token | | params.refreshToken | refresh token to use if JWT expires | | params.username | username to use with refreshToken or password if JWT expires | | params.password | password to use if JWT expires | | params.transactionToken | custom transaction token |

getConfig() ⇒ Object

return config object

Kind: global function

isSuccess(response) ⇒ Boolean

Given a HTTP response see if response is in 200 range

Kind: global function

| Param | Type | Description | | --- | --- | --- | | response | Object | HTTP response object |

get(options) ⇒ Promise

Retrieve the content of the resource

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.path | String | resource path | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath |

head(options) ⇒ Promise

Retrieve HTTP headers of the resource

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.path | String | resource path | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath |

post(options) ⇒ Promise

Create new resources within a LDP container

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.path | String | resource path | | options.headers | Object | resource headers, key/value pairs | | options.file | Object | (optional) path to file to upload | | options.content | Object | (optional) content to upload | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath | | options.transactionToken | String | (optional) override config.transactionToken |

put(options) ⇒ Promise

Create a resource with a specified path, or replace the triples associated with a resource with the triples provided in the request body.

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.path | String | resource path | | options.headers | Object | resource headers, key/value pairs | | options.file | Object | (optional) path to file to upload | | options.content | Object | (optional) content to upload | | options.partial | Object | (optional) only partial update happening, sets Prefer header to handling=lenient; received="minimal" | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath | | options.transactionToken | String | (optional) override config.transactionToken |

patch(options) ⇒ Promise

Sparql base update

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.path | String | resource path | | options.headers | Object | resource headers, key/value pairs | | options.file | Object | (optional) path to file to upload | | options.content | Object | (optional) content to upload | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath | | options.transactionToken | String | (optional) override config.transactionToken |

delete(options) ⇒ Promise

Delete a resource

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.path | String | resource path | | options.permanent | Boolean | remove /fcr:tombstone as well | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath | | options.transactionToken | String | (optional) override config.transactionToken |

copy(options) ⇒ Promise

Copy a resource (and its subtree) to a new location

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.path | String | resource path | | options.destination | Boolean | path to copy resource to | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath | | options.transactionToken | String | (optional) override config.transactionToken |

move(options) ⇒ Promise

Move a resource (and its subtree) to a new location

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.path | String | resource path | | options.destination | Boolean | path to move resource to | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath | | options.transactionToken | String | (optional) override config.transactionToken |

startTransaction(options) ⇒ Promise

Start a new transaction, returns transation token.

Kind: global function
Returns: Promise - {response, body, authenticated, transactionToken}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath |

commitTransaction(options) ⇒ Promise

Commit transation

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath | | options.transactionToken | String | (optional) override config.transactionToken |

rollbackTransaction(options) ⇒ Promise

Rollback transation

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | arguments | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath | | options.transactionToken | String | (optional) override config.transactionToken |

getVersions(options) ⇒ Promise

Get a current version

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath |

getVersion(options) ⇒ Promise

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | | | options.versionName | String | version to get | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath |

createVersion(options) ⇒ Promise

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | | | options.versionName | String | version to create | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath |

revertToVersion(options) ⇒ Promise

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | | | options.versionName | String | version name to revert to | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath |

deleteVersion(options) ⇒ Promise

Kind: global function
Returns: Promise - {response, body, authenticated}

| Param | Type | Description | | --- | --- | --- | | options | Object | | | options.versionName | String | version to delete | | options.headers | Object | resource headers, key/value pairs | | options.host | String | (optional) override config.host | | options.fcBasePath | String | (optional) override config.fcBasePath |

parseLinkHeader(link) ⇒ Object

helper for parsing HTTP link header. many utils for this do not assume multiple rel's of the same value which fedora returns.

Kind: global function

| Param | Type | Description | | --- | --- | --- | | link | String | HTTP link header |