0.3.0 • Published 7 years ago

s3stream v0.3.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

s3stream

Stream data to an Amazon S3 bucket using multipart upload.

Installation

Available as both a module and a cli app.

$ npm install [-g] s3stream

Usage/API

The below example shows the complete API for the module.

var s3stream = require('s3stream')

var s3target = {
  bucket: 's3stream-upload-test',
  key: 'file_name.ext',
  acl: 'public-read' // see "Access Control List" below
}

s3stream.init(aws, s3target, process.cwd() + '/file_name.ext')

s3stream.on('finished', function (url) {
  console.log('finished: ' + url)
})

Access Control List

This refers to S3's access control mechanism.

See http://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl for all available options.

0.3.0

7 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

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

10 years ago