tiny-parquet 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -50,6 +50,22 @@ You're building on the edge. You need Parquet. But:
50
50
 
51
51
  ---
52
52
 
53
+ ## Performance
54
+
55
+ Benchmarked on Node.js (Apple Silicon). First call includes WASM compilation warmup.
56
+
57
+ ```
58
+ Rows Write Read File Size
59
+ ─────────────────────────────────────────
60
+ 1,000 29.3 ms 7.1 ms 20 KB
61
+ 5,000 8.7 ms 4.9 ms 102 KB
62
+ 10,000 8.6 ms 7.2 ms 204 KB
63
+ ```
64
+
65
+ After warmup: **~1M+ rows/sec reads**, **~1M+ rows/sec writes**. Fast enough for edge runtimes where latency matters.
66
+
67
+ ---
68
+
53
69
  ## Install
54
70
 
55
71
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tiny-parquet",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Read and write Parquet files in 319KB of WASM. Two functions. Zero dependencies. Runs on Vercel Edge, Cloudflare Workers, Deno, Bun, Node.js, and browsers.",
5
5
  "author": "nktrchk",
6
6
  "license": "MIT",