• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

aws / aws-sdk-js / 744
95%
master: 92%

Build:
Build:
LAST BUILD BRANCH: client-side-monitoring-update
DEFAULT BRANCH: master
Ran 30 Sep 2014 09:28PM UTC
Jobs 1
Files 53
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
744

push

travis-ci

lsegal
Initial commit of AWS.S3.ManagedUpload

Usage:

```js
var fs = require('fs');
var zlib = require('zlib');

var body = fs.createReadStream('bigfile').pipe(zlib.createGzip());
var s3obj = new AWS.S3({params: {Bucket: 'myBucket', Key: 'myKey'}});
s3obj.upload().
  on('httpUploadProgress', function(evt) { console.log(evt); }).
  send({Body: body}, function(err, data) {
    console.log(err, data)
  });
```

Or via the ManagedUpload class:

```js
var fs = require('fs');
var zlib = require('zlib');

var params = {
  Bucket: 'myBucket',
  Key: 'myKey',
  Body: fs.createReadStream('bigfile').pipe(zlib.createGzip())
}

var upload = new AWS.S3.ManagedUpload();
upload.on('httpUploadProgress', function(evt) { console.log(evt); });
upload.send(params, function(err, data) { console.log(err, data) });
```

References #135

462 of 2772 relevant lines covered (16.67%)

1.2 hits per line

Jobs
ID Job ID Ran Files Coverage
1 744.1 (COVERAGE=1) 30 Sep 2014 09:28PM UTC 0
16.67
Travis Job 744.1
Source Files on build 744
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #744
  • afbb9df4 on github
  • Next Build on s3-managed-upload (#745)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc