Installation
Install GeoKit using your preferred package manager
Installation
Install GeoKit using your preferred package manager.
Requirements
- Node.js: version 18.0.0 or higher
- Package Manager: npm, yarn, or pnpm
Quick Start (npx)
The fastest way to use GeoKit is via npx. This doesn't require any installation:
npx @glincker/geokit audit https://example.comGlobal Installation
Install GeoKit globally to use the geokit command anywhere on your system:
npm install -g @glincker/geokityarn global add @glincker/geokitpnpm add -g @glincker/geokitLocal Installation
For project-specific use, install GeoKit as a development dependency:
npm install --save-dev @glincker/geokityarn add -D @glincker/geokitpnpm add -D @glincker/geokitVerify Installation
Verify that GeoKit is installed correctly by checking the version:
geokit --versionYou should see output similar to:
@glincker/geokit v0.3.0Next Steps
Now that GeoKit is installed, learn how to use it:
- CLI Usage - Command-line interface reference
- GitHub Action - Integrate with CI/CD
- API Reference - Use programmatically