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

strict-ls

v1.0.1

Published

A TypeScript package for enhanced localStorage handling with a simpler API and strict behavior.

Readme

strict-ls

strict-ls is a TypeScript library that enhances LocalStorage usage by providing a simpler API and enforcing strict behavior, such as throwing errors when trying to access non-existent keys.

Features

Simple API:

  • A simple and intuitive API for developers to interact with local storage, including methods for setting, getting, updating, and deleting data.

Serialization and Deserialization:

  • Automatically handles serialization and deserialization of complex data types such as objects and arrays when storing and retrieving data from local storage.

Namespacing:

  • Create a prefix to the data within local storage to prevent naming conflicts with other parts of the application or other applications using local storage or cookies.

Error Handling:

  • Improved error handling with customized error messages and formats for a better understanding and handling.

Installation

You can install strict-ls via npm:

npm install strict-ls

Basic Usage

Install the package.

You can create an instance of the Storage class to create a namespace.

Note: This wonderful package makes the storage and retrieval of object data an easy task!

// Basic Usage
import { get, set } from 'strict-ls';
set('myKey', { foo: 'bar' });
const value = get('myKey'); // { foo: 'bar' }

// With namespace
// Note that this will read 'namespace:token'
import LocalStorage from 'strict-ls';

const storage = new LocalStorage('namespace');
const value = storage.get('myKey');

You can remove keys directly with remove(key).

Advanced Usage

This package automatically throws errors for missing keys or empty input. It's a good practice to check if the key exists before accesing to it.

import { exists } from 'strict-ls';

const boolean = exists('myKey');

TypeScript Types

GenericItem The GenericItem type alias is defined as:

type GenericItem = Record<string, any> | string;

his type allows you to store either a string or an object (in the form of a dictionary) in LocalStorage, ensuring flexibility while maintaining type safety.

Error Handling

The library provides specific error classes for handling LocalStorage errors:

  • LocalStorageError: Thrown when trying to set or get a value with an invalid key.
  • LocalStorageCheckError: Thrown when trying to access a key that does not exist.

API Reference

LocalStorage

Constructor

  • new LocalStorage(namespace?: string): Creates a new LocalStorage instance with an optional namespace.

Methods

  • get(key: string): GenericItem: Retrieves the value for a given key.
  • set(key: string, value: GenericItem): boolean: Sets a value for a given key.
  • exists(key: string): boolean: Checks if a key exists in LocalStorage.
  • remove(key: string): boolean: Removes a key and its value from LocalStorage.
  • clear(): void: Clears all items from LocalStorage.
  • length(): number: Returns the total number of items in LocalStorage.