UNPKG

s3-express-zip

Version:

Download multiple objects from S3 bucket to zip archive through stream

5 lines (4 loc) 243 B
export const getS3ObjectStream = (s3: any, object: {Bucket: string; Key: string; Name?: any, [key: string]: any}) => ({ stream: s3.getObject({Bucket: object.Bucket, Key: object.Key}).createReadStream(), name: object.Name || object.Key });