Storage provides a set of adapters for easy client-side key-value storage.
// for IndexedDB:
import { get, set } from "@byojs/storage/idb";
await set("Hello","World!"); // true
await get("Hello"); // "World!"
The main purpose of Storage is to provide a set of adapters that normalize across various client side storage mechanisms (localStorage
/ sessionStorage
, IndexedDB, cookies, and OPFS) with a consistent key-value API (get()
, set()
, etc).
Storage ships with adapters for the following storage mechanisms:
-
idb
: IndexedDB -
local-storage
: Web StoragelocalStorage
-
session-storage
: Web StoragesessionStorage
-
cookie
: Web cookies -
opfs
: Origin Private File System (OPFS), specifically the virtual origin filesystemWarning: Browser support for
write()
into OPFS from the main thread (as this adapter does) is limited to desktop (not mobile!) Chromium and Firefox browsers. Seeopfs-worker
for broader device/browser support. -
opfs-worker
: Uses a Web Worker (background thread) for OPFS access, specifically to expand OPFS support to most devices/browsers (via synchronouswrite()
in a Web Worker or Service Worker).Warning: Web workers in some cases require modified security settings (for the site/app) -- for example, a Content Security Policy (CSP), specifically the
worker-src
directive.
Each of these client-side storage mechanisms has its own pros/cons, so choice should be made carefully.
However, IndexedDB (idb
adapter) is the most robust and flexible option, and should generally be considered the best default.
These client storage mechanisms have different storage limits, which in some cases may be rather small (i.e., 5MB for Local-Storage, or 4KB for cookies). Be careful with set()
calls: look for the QuotaExceededError
DOM exception being thrown, and determine what data can be freed up, or potentially switch to another storage mechanism with higher limits.
For example:
try {
await set("session-jwt",sessionJWT);
}
catch (err) {
if (err.reason?.name == "QuotaExceededError") {
// handle storage limit failure!
}
}
The web storage mechanisms (localStorage
, sessionStorage
) are by far the most common place web applications storage client-side data. However, there are some factors to consider when using the local-storage
/ session-storage
adapters.
Each mechanism is size-limited to 5MB, on most all browsers/devices. And they are only available from main browser threads, not in workers (Web Workers, Service Workers).
The cookie
adapter stores vault data in browser cookies. There are however some strong caveats to consider before choosing this storage mechanism.
Cookies are limited to ~4KB. Moreover, the provided data object has been JSON-serialized, encrypted and then base64 string encoded, then that value has been put into another object that's JSON-serialized, and that string (the actual cookie value) is URI-encoded (e.g, replacing " "
with %20
, etc). Taking into account all these steps that inflate your data size further towards the 4KB limit, you might only be able to squeeze ~2-3KB of original application data in, under the limit.
Also, cookies are typically sent on every request to a first-party origin server (images, CSS, fetch calls, etc). So that data (encrypted, of course) will be sent remotely, and will significantly weigh down all those requests.
Moreover, cookies are never "persistent" storage, and are subject to both expirations (maximum allowed is ~400 days out from the last update) and to users clearing them.
All these concerns considered, the cookie
adapter really should not be used except as a last resort, for small amounts of data. For example, your app might use this storage as a temporary location if normal storage quota has been reached, and later synchronize/migrate/backup off-device, etc.
The Origin Private File System (OPFS) web feature can be used to read/write "files" in a virtual filesystem on the client's device (private to the page's origin). The opfs
and opfs-worker
adapters provided with this library create JSON "files" in OPFS to store the vault data, one file per vault.
npm install @byojs/storage
The @byojs/storage npm package includes a dist/
directory with all files you need to deploy Storage (and its dependencies) into your application/project.
Note: If you obtain this library via git instead of npm, you'll need to build dist/
manually before deployment.
If you are using a bundler (Astro, Vite, Webpack, etc) for your web application, you should not need to manually copy any files from dist/
.
Just import
the adapter(s) of your choice, like so:
// {WHICHEVER}: "idb", "local-storage", etc
import { get, set } from "@byojs/storage/{WHICHEVER}";
The bundler tool should pick up and find whatever files (and dependencies) are needed.
If you are not using a bundler (Astro, Vite, Webpack, etc) for your web application, and just deploying the contents of dist/
as-is without changes (e.g., to /path/to/js-assets/storage/
), you'll need an Import Map in your app's HTML:
<script type="importmap">
{
"imports": {
"storage/idb": "/path/to/js-assets/storage/adapter.idb.mjs",
"storage/local-storage": "/path/to/js-assets/storage/adapter.local-storage.mjs",
"storage/session-storage": "/path/to/js-assets/storage/adapter.session-storage.mjs",
"storage/cookie": "/path/to/js-assets/storage/adapter.cookie.mjs",
"storage/opfs": "/path/to/js-assets/storage/adapter.opfs.mjs",
"storage/opfs-worker": "/path/to/js-assets/storage/adapter.opfs-worker.mjs",
"idb-keyval": "/path/to/js-assets/storage/external/idb-keyval.js"
}
}
</script>
Now, you'll be able to import
the library in your app in a friendly/readable way:
// {WHICHEVER}: "idb", "local-storage", etc
import { get, set } from "storage/{WHICHEVER}";
Note: If you omit the above adapter import-map entries, you can still import
Storage by specifying the proper full path to whichever adapter.*.mjs
file(s) you want to use.
However, the entry above for idb-keyval
is more required. Alternatively, you'll have to edit the adapter.idb.mjs
file to change its import
specifier for idb-keyval
to the proper path to idb-keyval.js
.
The API provided by the Storage adapters can be accessed, for each adapter, like this:
// for IndexedDB:
import { has, get, set, remove } from "@byojs/storage/idb";
await has("Hello"); // false
await set("Hello","World!"); // true
await has("Hello"); // true
await get("Hello"); // "World!"
await remove("Hello"); // true
The key-value oriented methods available on each adapter's API are:
-
has(name)
: has a value ofname
been set in this storage before? -
get(name)
: get a value ofname
(if any) from storage -
set(name,value)
: set avalue
atname
into storagevalue
can be any JSON-serializable object (object, array) or any primitive value; however, bare primitive values will end up being stored (and then retrieved) as strings.Further, any string value that is parseable as JSON will be parsed as JSON; for example, the string value
"[1,2,3]"
will be parsed as a JSON-serialized array, and return[1,2,3]
instead. -
remove(name)
: removename
(if any) from storage -
keys()
: returns an array of existing keys in storage -
entries()
: returns an array of[ key, value ]
tuples
NOTE: All of these methods are async (promise-returning).
If you need to rebuild the dist/*
files for any reason, run:
# only needed one time
npm install
npm run build:all
This library only works in a browser, so its automated test suite must also be run in a browser.
Visit https://byojs.github.io/storage/
and click the "run tests" button.
To instead run the tests locally, first make sure you've already run the build, then:
npm test
This will start a static file webserver (no server logic), serving the interactive test page from http://localhost:8080/
; visit this page in your browser and click the "run tests" button.
By default, the test/test.js
file imports the code from the src/*
directly. However, to test against the dist/*
files (as included in the npm package), you can modify test/test.js
, updating the /src
in its import
statements to /dist
(see the import-map in test/index.html
for more details).
All code and documentation are (c) 2024 Kyle Simpson and released under the MIT License. A copy of the MIT License is also included.