MaxMind Database GeoLite2
npm install @maxminddatabase/geolite2``bash`
npm install @maxminddatabase/geolite2
`typescript
import { GeoLite2 } from "@maxminddatabase/geolite2";
import type { ReaderModel, City } from "@maxminddatabase/geolite2/types";
const reader: ReaderModel = new GeoLite2("City").reader;
const city: City = reader.city("8.8.8.8");
``