@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.
- package/README.md +13 -0
- 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
|