Our README says that we must create a bucket on the developers console before we can use it in this library. Can't we provide a method to allow developers to create buckets on the fly?
var gcloud = require('gcloud');
var storage = gcloud.storage;
storage.createBucket('ryans-selfies', function(err) {
console.log(err || 'You may now upload your selfies.');
});
Our README says that we must create a bucket on the developers console before we can use it in this library. Can't we provide a method to allow developers to create buckets on the fly?