lakeql 0.1.8 → 0.1.9
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 +18 -5
- package/dist/bin.js +816 -23
- package/dist/{chunk-5K5JMJ2M.js → chunk-2XZJK7EF.js} +3 -2
- package/dist/{chunk-TFD5RFKB.js → chunk-4VJQ56HF.js} +424 -4
- package/dist/{chunk-MXGEAVHL.js → chunk-6XXXYVXT.js} +3843 -3483
- package/dist/chunk-ZVHJD6R3.js +1175 -0
- package/dist/cloudflare.d.ts +1 -1
- package/dist/cloudflare.js +5 -4
- package/dist/{geo-backend-TSQJWAAB.js → geo-backend-MY6MET3L.js} +1 -1
- package/dist/index.d.ts +420 -220
- package/dist/index.js +4 -3
- package/dist/node.d.ts +1 -1
- package/dist/node.js +48 -9
- package/dist/window-backend-DIMZN7EZ.js +905 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -3,12 +3,25 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/lakeql)
|
|
4
4
|
[](https://github.com/earonesty/lakeql/blob/main/LICENSE)
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
LakeQL is a pure JavaScript analytical query engine for Parquet and Iceberg, designed for
|
|
7
|
+
edge runtimes such as Cloudflare Workers. It requires no WASM, no native modules, and
|
|
8
|
+
streams large datasets with low memory usage.
|
|
7
9
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
LakeQL runs anywhere JavaScript runs: browsers, Node.js, Cloudflare Workers, and other
|
|
11
|
+
edge/serverless environments. It reads directly from object storage, uses bounded
|
|
12
|
+
streaming execution, and avoids the startup and deployment cost of DuckDB-WASM, native
|
|
13
|
+
modules, or a JVM.
|
|
14
|
+
|
|
15
|
+
Why care:
|
|
16
|
+
|
|
17
|
+
- Pure JavaScript: no WASM startup cost, no native modules.
|
|
18
|
+
- Edge runtime friendly: built for constrained JavaScript runtimes.
|
|
19
|
+
- Low-memory streaming execution over Parquet and Iceberg.
|
|
20
|
+
- Strict correctness: supported data is read correctly, unsupported semantics are rejected with typed errors.
|
|
21
|
+
|
|
22
|
+
Although LakeQL is optimized for portability and memory efficiency rather than raw
|
|
23
|
+
throughput, it is competitive with DuckDB-WASM and is faster on several common workloads.
|
|
24
|
+
Compare them in-browser at https://lakeql.com/compare.html.
|
|
12
25
|
|
|
13
26
|
▶ **Try it live in your browser:** https://lakeql.com/
|
|
14
27
|
|