anchor

@anchorlib/storage

A comprehensive storage solution for modern web applications with support for multiple storage backends including IndexedDB, Session Storage, and Memory Storage.

Features

Installation

npm install @anchorlib/storage

Documentation

For full documentation, visit Anchor Storage Documentation

Quick Start

import { MemoryStorage } from '@anchorlib/storage';

const storage = new MemoryStorage();
storage.set('key', 'value');
console.log(storage.get('key')); // 'value'

License

MIT


## License

MIT