@glandais/vcyclist-elevation-wasm 1.1.1 → 1.2.0

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 +13 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -148,6 +148,19 @@ On Node.js / Bun, tile decoding uses [`@jsquash/webp`](https://www.npmjs.com/pac
148
148
  Node ≥ 18 (`globalThis.fetch` is built-in since Node 18 / Bun) ; Node 22+ recommended for
149
149
  ESM `require()` support.
150
150
 
151
+ ## Try the interactive demo
152
+
153
+ The [`demo/`](demo/) module is a Vue 3 + Vite frontend that exercises the
154
+ Kotlin/JS engine end-to-end in a browser (GPX upload, configurable cyclist /
155
+ bike / wind / power, chart + map, hover sync).
156
+
157
+ ```bash
158
+ ./gradlew :demo:assemble
159
+ python -m http.server -d demo/dist 8000 # or any static file server
160
+ ```
161
+
162
+ See [`demo/README.md`](demo/README.md) for the dev workflow and architecture.
163
+
151
164
  ## Build & test
152
165
 
153
166
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glandais/vcyclist-elevation-wasm",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "main": "vcyclist-elevation.mjs",
5
5
  "types": "vcyclist-elevation.d.mts",
6
6
  "devDependencies": {},