Geoman and H3 library demo. It's built with TypeScript and React and uses Vite as a build tool.
Start by cloning the repository and installing the dependencies:
git clone https://github.com/tlinhart/geoman-h3.git
cd geoman-h3
nvm install
npm installTo start the development server, run
npm run devand open the browser at http://localhost:5173. It has hot module replacement (HMR) enabled and uses a Vite plugin to automatically check the code with TypeScript and Biome.
To build the application for production, run
npm run buildTo test the production build, run
npm run previewand point the browser to http://localhost:4173.
To format and lint the files with Biome, issue
npm run biomeTo type check the code with TypeScript, run
npm run typecheckThere is a demo of the application available at http://geoman-h3-demo.linhart.tech. The whole stack is managed with Pulumi IaC and deployed using GitHub Actions.
