From 74529ac1bb0310ec7d8adb119e141a4db8e5305f Mon Sep 17 00:00:00 2001 From: James Prevett Date: Tue, 10 Dec 2024 13:32:25 -0600 Subject: [PATCH] Added `XML` to the list of backends in the readme --- readme.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index f7e7ba2..727be4d 100644 --- a/readme.md +++ b/readme.md @@ -6,9 +6,10 @@ Please read the ZenFS core documentation! ## Backends -- `WebStorage`: Stores files in a `Storage` object, like `localStorage` and `sessionStorage`. -- `IndexedDB`: Stores files into an `IndexedDB` object database. -- `WebAccess`: Store files using the [File System Access API](https://developer.mozilla.org/Web/API/File_System_API). +- `WebStorage` stores files in a `Storage` object, like `localStorage` and `sessionStorage`. +- `IndexedDB` stores files into an `IndexedDB` object database. +- `WebAccess` uses the [File System Access API](https://developer.mozilla.org/Web/API/File_System_API). +- `XML` uses an `XMLDocument` to store files, which can be appended to the DOM. For more information, see the [API documentation](https://zen-fs.github.io/dom).