Files
meshtastic_mqtt_server/meshmap_frontend
2026-06-05 21:56:47 +08:00
..
2026-06-03 18:31:15 +08:00
2026-06-05 21:56:47 +08:00
2026-06-03 18:31:15 +08:00
up
2026-06-04 09:57:43 +08:00
2026-06-03 21:51:38 +08:00
2026-06-03 19:59:49 +08:00
2026-06-03 19:59:49 +08:00
2026-06-03 18:31:15 +08:00
2026-06-03 18:31:15 +08:00
2026-06-03 18:31:15 +08:00
2026-06-03 18:31:15 +08:00

MeshMap Frontend

Vue 3 + TypeScript + Vite frontend for the Meshtastic MQTT server.

Features

  • Left panel: recent chat messages
  • Right panel: Leaflet/OpenStreetMap node map
  • Bottom panel: selected node details, recent messages, and recent positions

The app uses relative /api URLs. In development, Vite proxies /api to the Go backend.

Development

Start the Go backend:

go run . --web-host 127.0.0.1 --web-port 8080

Start the frontend dev server:

cd meshmap_frontend
npm install
npm run dev

Production build

cd meshmap_frontend
npm run build

The build output is written to the repository root dist/ directory, which is served by the Gin backend.

Map tiles

The map uses Leaflet with OpenStreetMap tiles:

https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png

Network access to the tile server is required unless this is changed to a local tile source later.