├── .gitignore ├── README.md ├── dat-geoip.js ├── examples └── watch-fritter.js ├── hypertrie-create.js ├── hypertrie-query.js ├── hypertrie-seed.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | GeoLite* 2 | *.swp 3 | node_modules 4 | db 5 | package-lock.json 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimpick/dat-geoip/HEAD/README.md -------------------------------------------------------------------------------- /dat-geoip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimpick/dat-geoip/HEAD/dat-geoip.js -------------------------------------------------------------------------------- /examples/watch-fritter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimpick/dat-geoip/HEAD/examples/watch-fritter.js -------------------------------------------------------------------------------- /hypertrie-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimpick/dat-geoip/HEAD/hypertrie-create.js -------------------------------------------------------------------------------- /hypertrie-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimpick/dat-geoip/HEAD/hypertrie-query.js -------------------------------------------------------------------------------- /hypertrie-seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimpick/dat-geoip/HEAD/hypertrie-seed.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimpick/dat-geoip/HEAD/package.json --------------------------------------------------------------------------------