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

@hanspet/js-api

v1.0.2

Published

A helper methods and an extension to JS arrays, objects, IndexedDb, LocalStorage and SessionStorage , etc...

Downloads

21

Readme

JS-API

A helper methods and an extension to JS arrays, objects, IndexedDb, LocalStorage and SessionStorage , etc...

Installation

npm i --save @hanspet/js-api

The library helper methods for:

  1. Arrays
  2. Objects
  3. List of Values
  4. I/O
  5. Core

I / O

It contains a wrapper for both IndexedDb and the client local storage and session.

  1. IndexedDB Wrapper
import { IdbStore } from "@hanspet/js-api";

const idb = new IdbStore(databaseName);

idb.set(key, data, callback);
//callback is called with true or false.

idb.get(key, callback);
//also returns a promise with the value if callback was not specified.

idb.has(key, callback);
//callback is called with either true or false.
  1. Local Storage and Session Storage Wrapper
import { Store } from "@hanspet/js-api";
/**
 *
 * @param {String} key - A unique key to store data.
 * @param {String} value - the Value to be stored
 * @param {Integer} type - Store.Local or Store.Session. Default is Store.Local
 */
Store.set(key, value, storageType);

/**
 * It returns the stored data using the key and the storage type.
 * If the value was added to by using the Store.append, it returns
 * an array.
 * @param {String} key - A unique key to store data.
 * @param {Integer} type - Store.Local or Store.Session. Default is Store.Local
 */
Store.get(key, storageType);

/**
 * It returns true if the key exists in the storage type.
 * @param {String} key - A unique key to store data.
 * @param {Integer} type - Store.Local or Store.Session. Default is Store.Local
 */
Store.has(key, type);

/**
 *
 * @param {String} key - A unique key to store data.
 * @param {Object} value - the Value to be stored
 * @param {Integer} type - Store.Local or Store.Session. Default is Store.Local
 */
Store.setObject(key, object, type);

/**
 * It returns the object saved with Store.setObject using the key and the storage type.
 * @param {String} key - A unique key to store data.
 * @param {Integer} type - Store.Local or Store.Session. Default is Store.Local
 */

Store.getObject(key, type);

/**
 *
 * @param {String} key - A unique key to store data.
 * @param {String} value - the Value to be appended to the existing data that was stored with the same key.
 * @param {Integer} type - Store.Local or Store.Session. Default is Store.Local
 */
Store.append(key, value, type);

/**
 * It compares the specified value with the data stored against the
 * specified key and returns a boolean.
 * It is case-sensitive.
 * @param {String} key - A unique key to check data.
 * @param {String} value - the Value to be check.
 * @param {Integer} type - Store.Local or Store.Session. Default is Store.Local
 */
Store.isEqual(key, value, type);

/**
 * It compares the specified value with the data stored against the
 * specified key and returns a boolean.
 * @param {String} key - A unique key to check data.
 * @param {String} value - the Value to be check.
 * @param {Integer} type - Store.Local or Store.Session. Default is Store.Local
 */
Store.isEqualIgnoreCase(key, (value = ""), type);

/**
 * It deletes entry for the specified key in the store.
 * It returns a boolean.
 * @param {String} key - A unique key to check data.
 * @param {Integer} type - Store.Local or Store.Session. Default is Store.Local
 */
Store.delete(key, type);