object-storage
v0.6.2
Published
Client for openstack object-storage.
Downloads
30
Maintainers
Readme
node-object-storage
node client library for Openstack Object Storage
Installation
npm install object-storage
Example
var ObjectStorage = require('object-storage'),
storage = new ObjectStorage({
host: '',
username: '',
password: ''
});
storage.create('mycontainer').then(function() {
storage.putFile({src: 'path/to/file.jpg', dst: 'mycontainer/file.jpg'}).then(function(url) {
console.log('Object storage url to file', url);
});
});
See object-storage.test.js for more examples.
Run Tests
npm test
Enable debugging output
Set DEBUG environment variable to object-storage
DEBUG=object-storage node ./app.js