61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
var storage = require('./lib/index');
|
|
|
|
var client = storage.createClient({
|
|
provider: 'rackspace',
|
|
username: 'strongloop',
|
|
apiKey: 'your-rackspace-api-key'
|
|
});
|
|
|
|
// Container
|
|
|
|
client.getContainers(function (err, containers) {
|
|
if (err) {
|
|
console.error(err);
|
|
return;
|
|
}
|
|
containers.forEach(function (c) {
|
|
console.log('rackspace: ', c.name);
|
|
c.getFiles(function (err, files) {
|
|
files.forEach(function (f) {
|
|
console.log('....', f.name);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
/*
|
|
client.createContainer(options, function (err, container) { });
|
|
client.destroyContainer(containerName, function (err) { });
|
|
client.getContainer(containerName, function (err, container) { });
|
|
|
|
// File
|
|
|
|
client.upload(options, function (err) { });
|
|
client.download(options, function (err) { });
|
|
client.getFiles(container, function (err, files) { });
|
|
client.getFile(container, file, function (err, server) { });
|
|
client.removeFile(container, file, function (err) { });
|
|
*/
|
|
|
|
|
|
var s3 = storage.createClient({
|
|
provider: 'amazon',
|
|
key: 'your-amazon-key',
|
|
keyId: 'your-amazon-key-id'
|
|
});
|
|
|
|
s3.getContainers(function (err, containers) {
|
|
if (err) {
|
|
console.error(err);
|
|
return;
|
|
}
|
|
containers.forEach(function (c) {
|
|
console.log('amazon: ', c.name);
|
|
c.getFiles(function (err, files) {
|
|
files.forEach(function (f) {
|
|
console.log('....', f.name);
|
|
});
|
|
});
|
|
});
|
|
});
|