diff --git a/docz/docs/03-demos/03-desktop/02-nwjs.md b/docz/docs/03-demos/03-desktop/02-nwjs.md
index 180d3ba..7c2bc30 100644
--- a/docz/docs/03-demos/03-desktop/02-nwjs.md
+++ b/docz/docs/03-demos/03-desktop/02-nwjs.md
@@ -13,7 +13,7 @@ import TabItem from '@theme/TabItem';
 The [Standalone scripts](/docs/getting-started/installation/standalone) can be
 referenced in a `SCRIPT` tag from the entry point HTML page.
 
-This demo was tested against NW.js 0.66.0 on 2022 January 07.
+This demo was tested against NW.js 0.66.0 on 2023 January 07.
 
 The "Complete Example" creates an app that looks like the screenshots below:
 
diff --git a/docz/docs/03-demos/03-desktop/04-tauri.md b/docz/docs/03-demos/03-desktop/04-tauri.md
index a161728..dd0234f 100644
--- a/docz/docs/03-demos/03-desktop/04-tauri.md
+++ b/docz/docs/03-demos/03-desktop/04-tauri.md
@@ -13,7 +13,22 @@ import TabItem from '@theme/TabItem';
 The [NodeJS Module](/docs/getting-started/installation/nodejs) can be imported
 from JavaScript code.
 
-This demo was tested against Tauri 1.0.5 on 2022 August 13.
+The "Complete Example" creates an app that looks like the screenshot:
+
+
+  | macOS+ | Linux+ | 
| +
+
+
+ | +
+
+
+ | 
+
+## Native Modules
 
 :::note
 
@@ -22,11 +37,10 @@ Tauri currently does not provide the equivalent of NodeJS `fs` module.  The raw
 
 :::
 
-`http` and `dialog` must be explicitly allowed in `tauri.conf.json`:
+`http`, `dialog`, and `fs` must be explicitly allowed in `tauri.conf.json`:
 
-```json title="tauri.conf.json"
+```json title="src-tauri/tauri.conf.json"
     "allowlist": {
-      "all": true,
       "http": {
         "all": true,
         "request": true,
@@ -34,118 +48,12 @@ Tauri currently does not provide the equivalent of NodeJS `fs` module.  The raw
       },
       "dialog": {
         "all": true
+      },
+      "fs": {
+        "all": true
       }
 ```
 
-The "Complete Example" creates an app that looks like the screenshot:
-
-
-
-Complete Example (click to show)
-
-0) [Read Tauri "Getting Started" guide and install dependencies.](https://tauri.app/v1/guides/getting-started/prerequisites)
-
-1) Create a new Tauri app:
-
-```bash
-npm create tauri-app
-```
-
-When prompted:
-
-- App Name: `SheetJSTauri`
-- Window Title: `SheetJS + Tauri`
-- UI recipe: `create-vite`
-- Add "@tauri-apps/api": `Y`
-- ViteJS template: `vue-ts`
-
-2) Enter the directory:
-
-```bash
-cd SheetJSTauri
-```
-
-Open `package.json` with a text editor and add the highlighted lines:
-
-```json title="package.json"
-{
-  "name": "SheetJSTauri",
-  "private": true,
-  "version": "0.0.0",
-  "type": "module",
-  "scripts": {
-    "dev": "vite",
-    "build": "vue-tsc --noEmit && vite build",
-    "preview": "vite preview",
-    "tauri": "tauri"
-  },
-  "dependencies": {
-// highlight-next-line
-    "@tauri-apps/api": "^1.0.2",
-    "vue": "^3.2.37",
-// highlight-next-line
-    "xlsx": "https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz"
-  },
-  "devDependencies": {
-// highlight-next-line
-    "@tauri-apps/cli": "^1.0.5",
-    "@vitejs/plugin-vue": "^3.0.3",
-    "typescript": "^4.6.4",
-    "vite": "^3.0.7",
-    "vue-tsc": "^0.39.5"
-  }
-}
-```
-
-3) Install dependencies:
-
-```bash
-npm install --save https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz
-```
-
-4) Enable operations by adding the highlighted lines to `tauri.conf.json`:
-
-```json title="src-tauri/tauri.conf.json"
-  "tauri": {
-    "allowlist": {
-// highlight-start
-      "http": {
-        "all": true,
-        "request": true,
-        "scope": ["https://**"]
-      },
-      "dialog": {
-        "all": true
-      },
-// highlight-end
-      "all": true
-    }
-```
-
-In the same file, look for the `"identifier"` key and replace the value with `com.sheetjs.tauri`:
-
-```json title="src-tauri/tauri.conf.json"
-        "icons/icon.ico"
-      ],
-      // highlight-next-line
-      "identifier": "com.sheetjs.tauri",
-      "longDescription": "",
-```
-
-
-5) Download [`App.vue`](pathname:///tauri/App.vue) and replace `src/App.vue`
-   with the downloaded script.
-
-6) Build the app with
-
-```bash
-npm run tauri build
-```
-
-At the end, it will print the path to the generated program. Run the program!
-
-