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

ngx-storage-master

v1.0.3

Published

A full Angular-based type-safe wrapper around the Web Storage API

Downloads

3

Readme

NgxStorageMaster

A full Angular-based type-safe wrapper around the Web Storage API.

  • Store values in LocalStorage and SessionStorage
  • Retrieve values from LocalStorage and SessionStorage
  • Delete values from the storages
  • Custom prefixes for stored values in LocalStorage and SessionStorage

Installation

npm install ngx-storage-master

How it works

With StorageMaster, you first define a prefix for the storage you want to use. To do this, just add the LocalStorage or SessionStorage injection token to the module you want to configure. What is nice about it, is that you can specify custom prefixes for various modules.

import { SESSION_STORAGE_PREFIX } from 'ngx-storage-master';

@NgModule({
  declarations: [...],
  imports: [...],
  providers: [
    {
      provide: SESSION_STORAGE_PREFIX,
      useValue: 'my-session-storage-prefix'
    }
  ],
  bootstrap: [...]
})

or:

import { LOCAL_STORAGE_PREFIX } from 'ngx-storage-master';

@NgModule({
  declarations: [...],
  imports: [...],
  providers: [
    {
      provide: LOCAL_STORAGE_PREFIX,
      useValue: 'my-local-storage-prefix'
    }
  ],
  bootstrap: [...]
})

Now, just use the service you want to use. For retrieval, it is required that you specify a so-called type guard. TypeScript is able to guarantee type-safety compile time. However, since we are dealing with raw data from LocalStorage and SessionStorage, we need to add a runtime check as well. If you do not like this, or you think it is nonsense, just pass a wildcard: const typeGuard = () => true;. Remember: you are always in control of your data.

import { Component, OnInit } from '@angular/core';
import { SessionStorageService, StorageObject } from 'ngx-storage-master';

// For demonstration purpose only
interface SessionStorageObject {
  value: string;
  active: boolean;
}

@Component({...})
export class CustomComponent implements OnInit {
  constructor(private sessionStorageService: SessionStorageService) {}

  ngOnInit(): void {
    // Store a value
    const value: SessionStorageObject = { value: 'my-value', active: true };
    this.sessionStorageService.store<SessionStorageObject>('my-key', value);

    // Or retrieve it
    const typeGuard = (storageObject: StorageObject<SessionStorageObject>) => storageObject.value.value !== undefined;
    const valueFromStorage = this.sessionStorageService.get<SessionStorageObject>('my-key', typeGuard);
    
    // Or clear the entire storage for the configured prefix
    this.sessionStorageService.clear();
  }
}

The api for the LocalStorageService does not differ compared to the SessionStorageService.

Run tests

The Jest test runner is used to run the unit tests. To run them, just execute the following:

npm install
npm run test

Build and publish

ng build ngx-storage-master --prod
cd dist/ngx-storage-master
npm publish