Skip to content

Instantly share code, notes, and snippets.

@bekatom
Created June 1, 2017 13:37
Show Gist options
  • Save bekatom/2124f35d1d4afbfe978e6079adf0615d to your computer and use it in GitHub Desktop.
Save bekatom/2124f35d1d4afbfe978e6079adf0615d to your computer and use it in GitHub Desktop.
Get location data by IP
var axios = require('axios')
const getAddressByIP = (ip) => {
return axios.get(`http://ip-api.com/json/${ip}?lang=en`).then((data) => data)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment