object-storage

0.6.2 • Public • Published

node-object-storage

node client library for Openstack Object Storage

Build Status

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

Package Sidebar

Install

npm i object-storage

Weekly Downloads

1

Version

0.6.2

License

MIT

Last publish

Collaborators

  • martinj