2024-12-06 13:29:02 +01:00
2024-12-06 13:27:46 +01:00
2021-03-08 12:04:18 +01:00
2024-05-01 13:21:11 +02:00
2024-11-01 14:14:21 +01:00
2024-12-06 13:23:57 +01:00
2021-03-08 00:18:27 +01:00
2023-08-07 21:38:40 +02:00
2024-11-01 14:14:43 +01:00
2024-12-06 13:23:10 +01:00
2022-11-15 02:16:38 +01:00
2024-12-06 13:24:45 +01:00
2024-12-06 13:24:45 +01: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.

Nightly release channel

You can use the nightly release channel to try the latest changes in the main branch via unstorage-nightly.

If directly using unstorage in your project:

{
  "devDependencies": {
    "unstorage": "npm:unstorage-nightly"
  }
}

If using unstorage via another tool in your project:

{
  "resolutions": {
    "unstorage": "npm:unstorage-nightly"
  }
}

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
🌍 💾 Universal Storage Layer
Readme MIT 14 MiB
Languages
TypeScript 99.6%
JavaScript 0.4%