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

shelf-lib

v2.2.2

Published

A library that allows the user to interact with Shelf.

Downloads

44

Readme

shelf-lib-js

Build Status codecov.io

Introduction

shelf-lib-js is a Node.js library for using shelf.

Installation

To install shelf-lib-js for development, run the following commands:

git clone https://github.com/not-nexus/shelf-lib-js.git
cd shelf-lib-js
npm install

Usage

// Import the library.
var shelfLib = require("shelf-lib")("<URL where pyshelf is hosted>");

Options

The second parameter when requiring the library is an object holding various options that can change the behavior of the library.

| Name | Type | Description | |-------------------|---------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | logLevel | string | Sets the desired amount of logging. Values can be: "info", "debug", or "warning". The value defaults to "warning". WARNING: If the logLevel is set to "debug", the logger will log your Shelf authentication token. Log with "debug" at your own peril. | | strictHostCheck | boolean | Turns off request strictHostCheck. This defaults to true. | | timeoutDuration | int | Sets the amount of time in milliseconds before requests timeout. This defaults to 300000 (five minutes). | | retries | int | The number of times we should retry the request. This functionality applies to TCP level errors (socket timeout for example) and anything within the 500 HTTP status code range. |

Example:

var libOptions = {
    logLevel: "debug",          // Sets the desired amount of logging.
                                // Values can be: "info", "debug", or "warning".
                                // Defaults to "warning".
    "strictHostCheck": false    // Turns off request strictHostCheck.
                                // Defaults to true.
};

var shelfLib = require("shelf-lib")("<URL where shelf is hosted>", libOptions);

Reference Creation

// Grab a reference to a bucket.
var reference = shelfLib.initReference("refName", "<super secret pyshelf API key>");

Artifact Reference Creation

// Grab the artifact reference at location "/path".
var artifact = reference.initArtifact("path");

Uploading

To upload an artifact with the contents from a variable:

artifact.upload("Hello world!").then((uploadLocation) => {
    console.log("Uploaded content to: " + uploadLocation);
}, (err) => {
    console.log("Hit an error: " + err);
});

To upload an artifact from a file:

artifact.uploadFromFile("./file-to-upload.txt").then((uploadLocation) => {
    console.log("Uploaded content to: " + uploadLocation);
}, (err) => {
    console.log("Hit an error: " + err);
});

Or:

var fileReadStream = fs.createReadStream("./file-to-upload.txt");

artifact.uploadFromFile(fileReadStream).then((uploadLocation) => {
    console.log("Uploaded content to: " + uploadLocation);
}, (err) => {
    console.log("Hit an error: " + err);
});

Downloading

WARNING: Do not use shelfLib~Artifact.download for large artifacts. By default node's max memory size is 1.76GB (for 64 bit systems). This will blow up if your artifact is approaching that size. Use shelfLib~Artifact.downloadToFile instead.

To download the contents and receive it in a variable:

artifact.download().then((data) => {
    console.log("Got data: " + data);
}, (err) => {
    console.log("Hit an error: " + err);
});

To download an artifact to a file:

artifact.downloadToFile("./file-with-artifact-contents.txt").then(() => {
    console.log("Uploaded contents to: ./file-with-artifact-contents.txt");
}, (err) => {
    console.log("Hit an error: " + err);
});

Or:

var fileReadStream = fs.createReadStream("./file-with-artifact-contents.txt");

artifact.downloadToFile(fileReadStream).then((downloadLocation) => {
    console.log("Downloaded contents to: " + downloadLocation);
}, (err) => {
    console.log("Hit an error: " + err);
});

Dealing With Metadata

Getting metadata:

// Get all of the artifact's metadata.
artifact.metadata.getAll().then((metadata) => {
    console.log(metadata);
}, (err) => {
    console.log("Hit an error: " + err);
});

// Get one property of the artifact's metadata.
artifact.metadata.getProperty("tag1").then((property) => {
    console.log(property);
}, (err) => {
    console.log("Hit an error: " + err);
});

Creating and updating metadata on an artifact:

// Creates the mutable metadata property "tag" with value "Taggy-tag".
var tagProperty = {
    value: "Taggy-tag"
};
artifact.metadata.createProperty("tag", tagProperty).then((response) => {
    console.log(response);
}, (err) => {
    console.log("Hit an error: " + err);
});

// Creates the immutable metadata property "tag1" with value "Tag-taggy".
var tagProperty1 = {
    immutable: true,
    value: "Tag-taggy"
};
artifact.metadata.createProperty("tag1", tagProperty1).then((response) => {
    console.log(response);
}, (err) => {
    console.log("Hit an error: " + err);
});

// Updates the metadata property "tag" with value "Data".
var tagUpdate = {
    value: "Data"
};
artifact.metadata.updateProperty("tag", tagUpdate).then((updatedProperty) => {
    console.log(updatedProperty);
}, (err) => {
    console.log("Hit an error: " + err);
});

// Updates all of the metadata on an artifact.
var tagUpdateAll = {
    value: "Data",
    value2: "Data2"
}
artifact.metadata.updateAll(tagUpdateAll).then((updatedProperties) => {
    console.log(updatedProperties);
}, (err) => {
    console.log("Hit an error: " + err);
});

Deleting metadata:

// Deletes the metadata property "tag" (only deletes the property if its mutable).
artifact.metadata.deleteProperty("tag").then(() => {
    console.log("Successfully deleted the property.");
}, (err) => {
    console.log("Hit an error: " + err);
});

Searching

In order to search for an artifact, you need to first create an ArtifactSearch instance with the path you want to preform the search on.

var artifactSearch = reference.initSearch("pathy/");

Then you must construct an object with your search parameters.

var searchParameters = {
    search: "artifactName=*",   // Can be a string, an array of strings, or can also be undefined (optional).
    sort: "version, VERSION",   // Can be a string or undefined (optional).
    limit: 3                    // Can be a number or undefined (optional).
};

Finally, you can perform the search with your constructed parameters:

artifactSearch.search(searchParameters).then((results) => {
    console.log(results);
}, (err) => {
    console.log("Hit an error: " + err);
});

It will return a list of relative links for artifacts that matched the provided search.

Errors

Shelf Lib will reject with special ShelfError errors. These inherit from Error so they can either be treated generically or if you would like to programmatically code against specific errors you can use the error and ShelfError properties on the Shelf Lib constructor. For example

var artifact, shelfLibConstructor, shelfLib, ref;

shelfLibConstructor = require("shelf-lib");
shelfLib = shelfLibConstructor("https://api.shelf.com");
ref = shelfLib.initReference("fake", "INVALID_TOKEN");
artifact = ref.initArtifact("/fake/path");

artifact.upload("fake contents").then(() => {
    console.log("Everything uploaded fine.");
}, (err) => {
    if (err.code == shelfLibConstructor.error.UNAUTHORIZED) {
        console.log("Our token was invalid");
    } else {
        throw err;
    }
});

For more information see the error module.