0.0.6 • Published 10 years ago

s3store v0.0.6

Weekly downloads
1
License
BSD
Repository
-
Last release
10 years ago

#s3store Build Status

Use AWS S3 as a database for objects.

##Documentation ###createClient(options)

var createClient = require('s3store');
var options = {
  key: 'aws_key',
  secret: 'aws_secret',
  bucket: 'mybucket',
  region: 'eu-west-1',
  namespace: 'mydb'
};
var client = createClient(options);

###client.writeObject(key, object, cb) Write an object with the given key.

###client.readObject(key, cb) Read an object.

###client.deleteObject(key, cb) Delete an object.

###client.readKeys(cb) Read all keys.

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

11 years ago