Skip to content

Instantly share code, notes, and snippets.

@ndugger
Last active December 21, 2015 16:12
Show Gist options
  • Save ndugger/1e859f1aebb46f52b715 to your computer and use it in GitHub Desktop.
Save ndugger/1e859f1aebb46f52b715 to your computer and use it in GitHub Desktop.
import stream from 'stream';
let file = new Buffer([]);
const writable = new stream.Writable({
write (chunk, encoding, next) {
file = Buffer.concat([file, chunk]);
next();
}
});
writable.on('finish', () => {
myS3Object.upload({ Body: file }, callback);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment