1.0.4 • Published 9 years ago

simple-s3 v1.0.4

Weekly downloads
5
License
MIT
Repository
github
Last release
9 years ago

Simple S3 Client for Node.js

A dead-simple node.js module for Amazon S3.

How to use

var client = createClient({
  accessKeyId: 'XXXXXXXXXXXXXXXXXXXX',
  secretAccessKey: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
  region: 'eu-west-1'
});


client.upload('./hello-world.txt', {
  bucket: 'mydocuments',
  objectKey: 'txt/hello-world.txt',
  acl: 'public-read',
  contentType: 'text/plain'
}).then(function () {
}).done();

LICENCE

MIT

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

10 years ago

1.0.0

10 years ago