From 9d8f9c39617481ba63b5aa99ae698eacf8f381b1 Mon Sep 17 00:00:00 2001 From: Vortex Date: Fri, 15 Mar 2024 08:35:07 -0500 Subject: [PATCH] Updated readme --- readme.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 3cd3538..102e66d 100644 --- a/readme.md +++ b/readme.md @@ -6,7 +6,7 @@ Please read the BrowserFS documentation! ## Backends -- `Storage`: Stores files in a `Storage` object, like `localStorage` and `seesionStorage`. +- `Storage`: Stores files in a `Storage` object, like `localStorage` and `sessionStorage`. - `IndexedDB`: Stores files into an `IndexedDB` object database. - `FileSystemAccess`: Store files using the [Web File System API](https://developer.mozilla.org/Web/API/File_System_API). @@ -22,8 +22,6 @@ npm install @browserfs/dom > 🛈 The examples are written in ESM. If you are using CJS, you can `require` the package. If running in a browser you can add a script tag to your HTML pointing to the `browser.min.js` and use BrowserFS DOM via the global `BrowserFS_DOM` object. -You can use DOM backends, though you must register them if you plan on using `configure`: - ```js import { configure, fs } from '@browserfs/core'; import { Storage } from '@browserfs/dom';