You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GeoIpDbName.Country, // Use the enum instead of a string!
63
+
(path) =>maxmind.open<CountryResponse>(path)
64
+
)
65
+
66
+
const lookup =reader.get('185.194.81.29')
67
+
68
+
console.log(lookup.country.iso_code) // FR 🥖🇫🇷
69
+
70
+
reader.close()
71
+
})();
72
+
```
73
+
74
+
### Preloading databases
75
+
76
+
You can add this to your `package.json` to preload the databases after running `npm install`, instead of downloading them the first time `open` is called:
0 commit comments