# AddressIP [![npm downloads](https://img.shields.io/npm/dt/address-ip?maxAge=3600)](https://www.npmjs.com/package/address-ip) [![try on runkit](https://badge.runkitcdn.com/address-ip.svg)](https://npm.runkit.com/address-ip) [![tests](https://camo.githubusercontent.com/0bc7b99eefdd3139f0dbf0969b7f53da7f38a90b/68747470733a2f2f62616467656e2e6e65742f6769746875622f636865636b732f737479666c652f7061636b61676570686f6269613f6c6162656c3d7465737473)](https://github.com/wyx0-xyz/Address-IP/tree/master/test)
A simple module who get informations with an IP

## Installation
```js
$ npm i address-ip
```

## Getting Started
```js
/* Import the lib */
const AddressIP = require('address-ip');

/* Testing with Minecraft server IP */
new AddressIP('mc.hypixel.net').getCountry().then(console.log);
new AddressIP('mc.hypixel.net').getRegion().then(console.log);
new AddressIP('mc.hypixel.net').getCity().then(console.log);
new AddressIP('mc.hypixel.net').getLatitude().then(console.log);
new AddressIP('mc.hypixel.net').getLongitude().then(console.log);
```