@knockdata/objectexplorer 0.5.4 โ 0.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -17
- package/app/assets/WorkerParser.js +121 -121
- package/app/assets/index.css +1 -1
- package/app/assets/index.js +143 -142
- package/app/assets/is.js +1 -1
- package/app/assets/mimes.js +1 -1
- package/app/assets/search-worker.js +3 -3
- package/app/assets/share.js +3 -3
- package/package.json +1 -1
- package/server/WebServer.mjs +258 -248
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Azure Blob and local folders in one window โ and every byte stays on your mach
|
|
|
5
5
|
|
|
6
6
|
<img src="https://raw.githubusercontent.com/knockdata/objectexplorer/refs/heads/main/docs/public/shot/hero.png" width="800">
|
|
7
7
|
|
|
8
|
-
๐ **[Documentation](https://
|
|
8
|
+
๐ **[Documentation](https://objectexplorer.com)** ยท ๐ [Try it in a browser](https://objectexplorer.com/app)
|
|
9
9
|
|
|
10
10
|
## Run it with npx
|
|
11
11
|
|
|
@@ -23,7 +23,7 @@ npx @knockdata/objectexplorer ~/data port=9421
|
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
If PowerShell refuses to run `npx`, see
|
|
26
|
-
[troubleshooting](https://
|
|
26
|
+
[troubleshooting](https://objectexplorer.com/reference/troubleshooting).
|
|
27
27
|
|
|
28
28
|
## Or install the app
|
|
29
29
|
|
|
@@ -36,7 +36,7 @@ If PowerShell refuses to run `npx`, see
|
|
|
36
36
|
| Linux, x64 | [ObjectExplorer-linux-x64.AppImage](https://github.com/knockdata/objectexplorer/releases/latest/download/ObjectExplorer-linux-x64.AppImage) |
|
|
37
37
|
| Linux, ARM | [ObjectExplorer-linux-arm64.AppImage](https://github.com/knockdata/objectexplorer/releases/latest/download/ObjectExplorer-linux-arm64.AppImage) |
|
|
38
38
|
|
|
39
|
-
Per-platform notes are in [getting started](https://
|
|
39
|
+
Per-platform notes are in [getting started](https://objectexplorer.com/getting-started).
|
|
40
40
|
|
|
41
41
|
## What it solves
|
|
42
42
|
|
|
@@ -72,28 +72,28 @@ in a worker on your own machine.
|
|
|
72
72
|
- The only call that is not to your own storage is a version check against the npm registry, so the
|
|
73
73
|
app can tell you an update exists.
|
|
74
74
|
|
|
75
|
-
โ [the whole argument](https://
|
|
76
|
-
[where your data lives](https://
|
|
75
|
+
โ [the whole argument](https://objectexplorer.com/privacy), and
|
|
76
|
+
[where your data lives](https://objectexplorer.com/reference/data-locations)
|
|
77
77
|
|
|
78
78
|
## Features
|
|
79
79
|
|
|
80
80
|
| | |
|
|
81
81
|
|---|---|
|
|
82
|
-
| [Connect storage](https://
|
|
83
|
-
| [Preview anything](https://
|
|
84
|
-
| [Column summaries](https://
|
|
85
|
-
| [Notebook](https://
|
|
86
|
-
| [Data lake tables](https://
|
|
87
|
-
| [Models](https://
|
|
88
|
-
| [Search](https://
|
|
89
|
-
| [File management](https://
|
|
90
|
-
| [Sharing](https://
|
|
91
|
-
|
|
92
|
-
The whole list of formats is on [every format](https://
|
|
82
|
+
| [Connect storage](https://objectexplorer.com/storage/connect) | S3, GCS, Azure Blob, MinIO, local folders โ added one root at a time |
|
|
83
|
+
| [Preview anything](https://objectexplorer.com/explore/preview) | parquet, csv, json, SPSS, SAS, pdf, office, images, audio, video, ebooks, sprite sheets, hex |
|
|
84
|
+
| [Column summaries](https://objectexplorer.com/explore/column-summary) | a histogram, a box plot or a split bar under every column header |
|
|
85
|
+
| [Notebook](https://objectexplorer.com/analyze/notebook) | SQL, charts, models and JavaScript over the object you clicked |
|
|
86
|
+
| [Data lake tables](https://objectexplorer.com/analyze/lake) | Delta, Iceberg, Hudi and partitioned exports, read as one table |
|
|
87
|
+
| [Models](https://objectexplorer.com/analyze/model) | LightGBM in WebAssembly, with exact TreeSHAP explanations |
|
|
88
|
+
| [Search](https://objectexplorer.com/explore/search) | local folders and cloud prefixes in the same run |
|
|
89
|
+
| [File management](https://objectexplorer.com/explore/file-management) | copy, move, rename, delete across providers, with a trash and an undo |
|
|
90
|
+
| [Sharing](https://objectexplorer.com/explore/share) | a link to a table, masked or hashed column by column, with an expiry |
|
|
91
|
+
|
|
92
|
+
The whole list of formats is on [every format](https://objectexplorer.com/formats/).
|
|
93
93
|
|
|
94
94
|
## Links
|
|
95
95
|
|
|
96
|
-
- [
|
|
96
|
+
- [objectexplorer.com](https://objectexplorer.com) โ the documentation
|
|
97
97
|
- [objectexplorer.com](https://objectexplorer.com) โ the product page
|
|
98
98
|
- [Changelog](https://github.com/knockdata/objectexplorer/blob/main/CHANGELOG.md)
|
|
99
99
|
- [Releases](https://github.com/knockdata/objectexplorer/releases)
|