Skip to content

olivierkaisin/node-simple-s3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published