Giter Site home page Giter Site logo

s3-streams's Introduction

s3-streams

Support for streaming reads and writes from and to S3 using Amazon's native API.

build status coverage license version downloads

Amazon makes it a giant pain to do anything stream-like when it comes to S3 (given the general restriction that every request needs a Content-Length header). We provide native stream classes (both Readable and Writable) that wrap aws-sdk S3 requests and responses to make your life easier.

IMPORTANT: This library uses the streams3 API. In order to provide compatibility with older versions of node we make use of readable-stream. This is unlikely to have any effect on your code but has not yet been well tested.

If you are using node 0.8 you must ensure your version of npm is at least 1.4.6.

Features:

  • Native read streams,
  • Native write streams,
  • Smart piping.

Usage

npm install s3-streams

Write Streams

Create streams for uploading to S3:

var S3 = require('aws-sdk').S3,
	S3S = require('s3-streams');

var upload = S3S.WriteStream(new S3(), {
	Bucket: 'my-bucket',
	Key: 'my-key',
	// Any other AWS SDK options
	// ContentType: 'application/json'
	// Expires: new Date('2099-01-01')
	// ...
});

Read Streams

Create streams for downloading from S3:

var S3 = require('aws-sdk').S3,
	S3S = require('s3-streams');

var download = S3S.ReadStream(new S3(), {
	Bucket: 'my-bucket',
	Key: 'my-key',
	// Any other AWS SDK options
});

Smart Piping

Smart pipe files over HTTP:

var http = require('http'),
    S3 = require('aws-sdk').S3,
	S3S = require('s3-streams');

http.createServer(function(req, res) {
    var src = S3S.ReadStream(...);
    // Automatically sets the correct HTTP headers
    src.pipe(res);
})

Smart pipe files on S3:

var S3 = require('aws-sdk').S3,
	S3S = require('s3-streams');

var src = S3S.ReadStream(...),
	dst = S3S.WriteStream(...);

// No data ever gets downloaded locally.
src.pipe(dst);

Extras

You can create streams with different settings by creating a partial for the specific S3 instance you have:

var instance = new S3(), s3 = {
	createReadStream: _.partial(S3ReadStream, instance),
	createWriteStream: _.partial(S3WriteStream, instance)
}

var stream = s3.createReadStream({ Bucket: 'my-bucket', Key: 'my-key' });

Existing frameworks:

  • knox (doesn't use native AWS SDK, no true streaming support)
  • s3-upload-stream (doesn't use node streams API, no support for streaming downloads)
  • s3-download-stream (only does downloads, downloads are streamed by S3 part, not by individual buffer chunks)
  • streaming-s3 (overall terrible API; no actual streams)
  • create-s3-object-write-stream (probably one of the better ones)

s3-streams's People

Contributors

izaakschroeder avatar jasonsperske avatar snyk-bot avatar sramam avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.