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 🙏

© 2026 – Pkg Stats / Ryan Hefner

safe-vault

v1.1.3

Published

Type-safe localStorage wrapper with TTL support

Readme

SafeVault

A type-safe localStorage wrapper with built-in TTL (Time To Live) support for browser environments.

Features

  • 🔒 Type-safe: Full TypeScript support with schema definitions
  • TTL Support: Set automatic expiration times for stored data
  • 🛡️ Error Handling: Gracefully handles corrupted data and expired entries
  • 🪶 Lightweight: Zero dependencies
  • 🌐 Storage Agnostic: Works with both localStorage and sessionStorage

Installation

npm install safe-vault
yarn add safe-vault
pnpm add safe-vault

Usage

Basic Example

import { SafeVault } from 'safe-vault';

// Define your storage schema
interface MySchema {
  user: {
    id: string;
    name: string;
  };
  token: string;
  preferences: {
    theme: 'light' | 'dark';
  };
}

// Create an instance
const vault = new SafeVault<MySchema>();

// Set values
vault.set('user', { id: '123', name: 'John Doe' });
vault.set('token', 'abc123');

// Get values
const user = vault.get('user'); // Typed as { id: string; name: string } | null
const token = vault.get('token'); // Typed as string | null

// Remove values
vault.remove('token');

// Clear all storage
vault.clear();

TTL (Time To Live) Support

Set expiration times for your data:

// Expire after 1 hour (3600000 milliseconds)
vault.set('token', 'abc123', 3600000);

// Expire after 5 minutes
vault.set('sessionData', { temp: true }, 5 * 60 * 1000);

// When you try to get expired data, it returns null
setTimeout(() => {
  const token = vault.get('token'); // null (if expired)
}, 3600001);

Using sessionStorage

const sessionVault = new SafeVault<MySchema>(sessionStorage);

sessionVault.set('temporaryData', { foo: 'bar' });

API Reference

Constructor

new SafeVault<Schema>(storage?: Storage)
  • storage: Optional. Defaults to localStorage. Can be sessionStorage or any Storage-compatible object.

Methods

set<K>(key: K, value: Schema[K], ttl?: number): void

Store a value with optional TTL.

  • key: The key from your schema
  • value: The value to store (must match schema type)
  • ttl: Optional. Time to live in milliseconds

get<K>(key: K): Schema[K] | null

Retrieve a value. Returns null if the key doesn't exist or has expired.

  • key: The key from your schema
  • Returns: The stored value or null

remove<K>(key: K): void

Remove a specific key from storage.

  • key: The key to remove

clear(): void

Clear all items from storage.

Error Handling

SafeVault automatically handles:

  • Corrupted JSON: If stored data can't be parsed, it's removed and null is returned
  • Expired entries: Automatically removed when accessed
  • Missing keys: Returns null gracefully

Browser Support

SafeVault requires a browser environment with localStorage or sessionStorage support. It will throw an error if used in non-browser environments (like Node.js without polyfills).

TypeScript

This package is written in TypeScript and includes type definitions. Your schema provides full autocomplete and type checking:

interface MySchema {
  count: number;
  name: string;
}

const vault = new SafeVault<MySchema>();

vault.set('count', 42); // ✅ OK
vault.set('count', '42'); // ❌ Type error
vault.set('invalid', 'value'); // ❌ Type error - key not in schema

const count = vault.get('count'); // Type: number | null

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Issues

If you find a bug or have a feature request, please open an issue on GitHub.