There are 58 peaks in Colorado exceeding 14,000' in elevation. This app is a log of which I have summited, and which yet remain :)
- Install dependencies.
npm i
- Run for local development. Kicks off a (mostly) hot-reloading server at
localhost:8080
.npm run start
- Build for deployment. Serve from
dist/
directory.npm run build
- Everything in that
initial
directory is just leftover from me converting an HTML table list of 14ers I found online to JSON structured in the format I need. The actual data the app consumes is insrc/_data/mountains.json
. I leftinitial
there just in case I need to reset the project or something lol.
- Total elevation gain (H/T @leviboenish). Would have to add trailhead elevation to API, which is also tricky because there are multiple routes/trailheads per-summit.
- Dynamic updates. Would be sick to be able to authenticate and make a quick serverless call. I'm actually stoked on not using any JS for this so I might have to figure out how to handle serverless auth.