2024-01-03 17:31:20 +01:00
2021-03-08 12:04:18 +01:00
2023-08-07 21:38:40 +02:00
2021-03-08 00:18:27 +01:00
2021-03-11 22:18:00 +01:00
2023-05-24 14:54:01 +02:00
2023-08-07 21:38:40 +02:00
2023-11-15 01:43:09 +01:00
2022-11-15 02:16:38 +01:00
2023-04-16 14:47:08 +02:00
2022-11-15 02:16:38 +01:00
2023-02-28 22:17:12 +01:00

💾 Unstorage

npm version npm downloads Codecov bundle License

Unstorage provides an async Key-Value storage API with conventional features like multi driver mounting, watching and working with metadata, dozens of built-in drivers and a tiny core.

👉 Documentation

Features

  • Designed for all environments: Browser, NodeJS, and Workers
  • Lots of Built-in drivers
  • Asynchronous API
  • Unix-style driver mounting to combine storages
  • Default in-memory storage
  • Tree-shakable utils and tiny core
  • Auto JSON value serialization and deserialization
  • Binary and raw value support
  • State snapshots and hydration
  • Storage watcher
  • HTTP Storage with built-in server

Usage

Install unstorage npm package:

# yarn
yarn add unstorage

# npm
npm install unstorage

# pnpm
pnpm add unstorage
import { createStorage } from "unstorage";

const storage = createStorage(/* opts */);

await storage.getItem("foo:bar"); // or storage.getItem('/foo/bar')

👉 Check out the the documentation for usage information.

Contribution

  • Clone repository
  • Install dependencies with pnpm install
  • Use pnpm dev to start jest watcher verifying changes
  • Use pnpm test before pushing to ensure all tests and lint checks passing

License

MIT

Description
No description provided
Readme MIT 31 MiB
Languages
TypeScript 99.6%
JavaScript 0.4%