-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
596 additions
and
10,526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# yaml-language-server: $schema=https://unpkg.com/undocs/schema/config.json | ||
name: unstorage | ||
shortDescription: Universal Key-Value Storage. | ||
description: Unstorage is TypeScript library that provides an async key-value storage API with conventional features like multi driver mounting, watching, working with metadata and has 20+ built-in drivers. | ||
github: unjs/unstorage | ||
themeColor: amber | ||
url: https://unstorage.unjs.io | ||
redirects: | ||
"/usage": "/getting-started/usage" | ||
"/utils": "/getting-started/utils" | ||
"/http-server": "/getting-started/http-server" | ||
"/custom-driver": "/getting-started/custom-driver" | ||
"/drivers/azure-app-configuration": "/divers/azure" | ||
"/drivers/azure-cosmos": "/divers/azure" | ||
"/drivers/azure-key-vault": "/divers/azure" | ||
"/drivers/azure-storage-block": "/divers/azure" | ||
"/drivers/azure-storage-table": "/divers/azure" | ||
"/drivers/cloudflare-kv-binding": "/drivers/cloudflare" | ||
"/drivers/cloudflare-kv-http": "/drivers/cloudflare" | ||
"/drivers/cloudflare-r2-binding": "/drivers/cloudflare" | ||
"/drivers/vercel-kv": "/drivers/vercel" | ||
"/drivers/netlify-blobs": "/drivers/netlify" | ||
"/drivers/localstorage": "/drivers/browser" | ||
"/drivers/indexedb": "/drivers/browser" | ||
"/drivers/session-storage": "/drivers/browser" | ||
landing: | ||
contributors: true | ||
featuresTitle: A simple, small, and fast key-value storage library for JavaScript. | ||
features: | ||
- title: "Runtime Agnostic" | ||
description: "Your code will work on any JavaScript runtime including Node.js, Bun, Deno and Workers." | ||
icon: "i-material-symbols-lock-open-right-outline-rounded" | ||
- title: "Built-in drivers" | ||
description: "Unstorage is shipped with 20+ built-in drivers for different platforms: Memory (default), FS, Redis, Memory, MongoDB, CloudFlare, GitHub..." | ||
icon: "i-material-symbols-usb" | ||
- title: "Snapshots" | ||
description: "Expand your server and add capabilities. Your codebase will scale with your project." | ||
icon: "i-material-symbols-add-a-photo-outline" | ||
- title: "Multi Storages" | ||
description: "Unix-style driver mounting to combine storages on different mounts." | ||
icon: "i-material-symbols-view-list-outline" | ||
- title: "JSON friendly" | ||
description: "Unstorage automatically serialization and deserialization JSON values." | ||
icon: "i-material-symbols-magic-button" | ||
- title: "Binary Support" | ||
description: "Store binary and raw data like images, videos, audio files, etc." | ||
icon: "i-material-symbols-audio-file" |
File renamed without changes
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 6 additions & 2 deletions
8
docs/content/1.getting-started/2.utils.md → docs/1.guide/2.utils.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
...ontent/1.getting-started/3.http-server.md → docs/1.guide/3.http-server.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
---- | ||
icon: icon-park-outline:hard-disk | ||
--- | ||
|
||
# Drivers | ||
|
||
> Unstorage has several built-in drivers | ||
See next sections for guide about using each driver. | ||
|
||
::read-more{to="/guide#mountmountpoint-driver"} | ||
See [`driver.mount()`] to learn about how to | ||
:: |
Oops, something went wrong.