This folder contains the VitePress documentation site for Geocoding.net.
- Node.js 20.19.x LTS or 22.12+
- npm
Install dependencies from the docs/ directory:
npm ciStart the development server:
npm run devBuild the static site:
npm run buildPreview the built site locally:
npm run previewdocs/
├── .vitepress/
│ └── config.ts
├── guide/
│ ├── getting-started.md
│ ├── providers/
│ │ ├── azure-maps.md
│ │ ├── bing-maps.md
│ │ ├── google.md
│ │ ├── here.md
│ │ ├── mapquest.md
│ │ └── yahoo.md
│ ├── providers.md
│ ├── sample-app.md
│ └── what-is-geocoding-net.md
├── index.md
├── package-lock.json
├── package.json
└── README.md
guide/contains the published consumer and contributor documentation.- Keep
README.md,AGENTS.md, and the guide pages aligned when provider support or contributor workflows change.