A website to display geocache information from my query server.
A live example is available.
- Install nodejs
- Install dependencies:
npm install
- Bundle the scripts:
npm run build
- Copy assets to "dist" directory:
npm run dist
- go to "dist" directory:
cd dist
- Serve everything using some webserver, e.g.
python -m SimpleHTTPServer
( orpython -m http.server
).
For continuous development your probably want to skip step 4 and just run rollup in watch mode: $(npm bin)/rollup -c -w
.
The website is a basic SPA written using Mithril. You should probably also be familiar with Leaflet. Data is pulled from my own query server using GraphQL.
PRs are welcome.
MIT. See LICENSE.