I'm using pkgcloud npm for multicloud access. and i want to list out all instances from all zone (like US East (N. Virginia),US West (Oregon),US West (N. California),EU (Ireland)) etc.
here is my code
var aws = require('pkgcloud').compute.createClient({
provider : 'amazon',
key:'Secret Access Key',
keyId:'Access Key ID'
});
one more thing i need to ask you is can i use pkgcloud in production ? I've also read apache libcloud so which is better to use for production ? pkgcloud or libcloud ?