given an ip address, return which cloud provider it belongs to (EC2, GCE, etc)
$ which-cloud 104.196.27.39
gce
if no ip is given, which-cloud
will use the public ip of the current host
$ which-cloud
AT&T Internet Services (SIS-80)
npm i which-cloud -g
which-cloud
npm i which-cloud --save
const whichCloud = require('which-cloud')
-
ip
: string, optionalDetermine the cloud provider for this ip
If no ip is given, the public ip of the current host will be used
-
callback
: function, requiredCalled with an
Error
or the determined cloud provider as a string
- Amazon Web Services (aws).
- Google Compute Engine (gce).
- Azure (azure).
- fallback to whois lookup.
I would love help adding support for more cloud services.
ISC