diff --git a/docz/docs/04-getting-started/03-demos/05-salesforce.md b/docz/docs/04-getting-started/03-demos/01-salesforce.md
similarity index 99%
rename from docz/docs/04-getting-started/03-demos/05-salesforce.md
rename to docz/docs/04-getting-started/03-demos/01-salesforce.md
index 84e9c12..58935fa 100644
--- a/docz/docs/04-getting-started/03-demos/05-salesforce.md
+++ b/docz/docs/04-getting-started/03-demos/01-salesforce.md
@@ -1,5 +1,5 @@
---
-sidebar_position: 6
+sidebar_position: 1
---
# Salesforce LWC
diff --git a/docz/docs/04-getting-started/03-demos/02-extendscript.md b/docz/docs/04-getting-started/03-demos/02-extendscript.md
index c12764d..9bedc6a 100644
--- a/docz/docs/04-getting-started/03-demos/02-extendscript.md
+++ b/docz/docs/04-getting-started/03-demos/02-extendscript.md
@@ -1,5 +1,5 @@
---
-sidebar_position: 3
+sidebar_position: 2
---
# Adobe Apps
diff --git a/docz/docs/04-getting-started/03-demos/10-database.md b/docz/docs/04-getting-started/03-demos/03-database.md
similarity index 99%
rename from docz/docs/04-getting-started/03-demos/10-database.md
rename to docz/docs/04-getting-started/03-demos/03-database.md
index 0058705..a2a669b 100644
--- a/docz/docs/04-getting-started/03-demos/10-database.md
+++ b/docz/docs/04-getting-started/03-demos/03-database.md
@@ -1,5 +1,5 @@
---
-sidebar_position: 10
+sidebar_position: 3
title: Databases and SQL
---
diff --git a/docz/docs/04-getting-started/03-demos/04-netsuite.md b/docz/docs/04-getting-started/03-demos/04-netsuite.md
index a4b31e3..f5c14d6 100644
--- a/docz/docs/04-getting-started/03-demos/04-netsuite.md
+++ b/docz/docs/04-getting-started/03-demos/04-netsuite.md
@@ -1,5 +1,5 @@
---
-sidebar_position: 5
+sidebar_position: 4
---
# NetSuite
diff --git a/docz/docs/04-getting-started/03-demos/01-gsheet.md b/docz/docs/04-getting-started/03-demos/05-gsheet.md
similarity index 96%
rename from docz/docs/04-getting-started/03-demos/01-gsheet.md
rename to docz/docs/04-getting-started/03-demos/05-gsheet.md
index 563a466..8dab456 100644
--- a/docz/docs/04-getting-started/03-demos/01-gsheet.md
+++ b/docz/docs/04-getting-started/03-demos/05-gsheet.md
@@ -1,5 +1,5 @@
---
-sidebar_position: 2
+sidebar_position: 5
---
# Google Sheets
diff --git a/docz/docs/04-getting-started/03-demos/03-excel.md b/docz/docs/04-getting-started/03-demos/10-excel.md
similarity index 96%
rename from docz/docs/04-getting-started/03-demos/03-excel.md
rename to docz/docs/04-getting-started/03-demos/10-excel.md
index 1da8041..0598f91 100644
--- a/docz/docs/04-getting-started/03-demos/03-excel.md
+++ b/docz/docs/04-getting-started/03-demos/10-excel.md
@@ -1,5 +1,5 @@
---
-sidebar_position: 4
+sidebar_position: 10
---
# Excel JavaScript API
diff --git a/docz/docs/04-getting-started/03-demos/15-chromium.md b/docz/docs/04-getting-started/03-demos/15-chromium.md
index 1759fd6..db9d34d 100644
--- a/docz/docs/04-getting-started/03-demos/15-chromium.md
+++ b/docz/docs/04-getting-started/03-demos/15-chromium.md
@@ -1,5 +1,5 @@
---
-sidebar_position: 14
+sidebar_position: 15
title: Chrome and Chromium
---
diff --git a/docz/docs/04-getting-started/03-demos/16-desktop.md b/docz/docs/04-getting-started/03-demos/16-desktop.md
new file mode 100644
index 0000000..dbe31b0
--- /dev/null
+++ b/docz/docs/04-getting-started/03-demos/16-desktop.md
@@ -0,0 +1,128 @@
+---
+sidebar_position: 16
+title: Desktop Applications
+---
+
+Web technologies like JavaScript and HTML have been adapted to the traditional
+app space. Typically these frameworks bundle a JavaScript engine as well as a
+windowing framework. SheetJS is compatible with many toolkits.
+
+## NW.js
+
+The [Standalone scripts](../../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.
+
+Complete Example (click to show)
+
+1) Create a `package.json` file that specifies the entry point:
+
+```json title="package.json"
+{
+ "name": "sheetjs-nwjs",
+ "author": "sheetjs",
+ "version": "0.0.0",
+ "main": "index.html",
+ "dependencies": {
+ "nw": "~0.66.0",
+ "xlsx": "https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz"
+ }
+}
+```
+
+2) Download [`index.html`](pathname:///nwjs/index.html) into the same folder.
+
+:::caution
+
+Right-click the link and select "Save Link As...". Left-clicking the link will
+try to load the page in your browser. The goal is to save the file contents.
+
+:::
+
+3) Run `npm install` to install dependencies
+
+4) To verify the app works, run in the test environment:
+
+```
+npx nw .
+```
+
+The app will show and you should be able to verify reading and writing by using
+the file input element to select a spreadsheet and clicking the export button.
+
+5) To build a standalone app, run the builder:
+
+```
+npx -p nw-builder nwbuild --mode=build .
+```
+
+This will generate the standalone app in the `build\sheetjs-nwjs\` folder.
+
+
+SheetJS NW.js Demo ++ + +
+Drop a spreadsheet file here to see sheet data+ ... or click here to select a file + +