Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
s3-readstream
Advanced tools
AWS S3 Read Stream made easy
Simple wrapper around AWS S3 getObject's grab-by-range call allowing intuitive and stable smart streaming.
AWS.S3.getObject().createReadStream()
To install the package:
npm install s3-readstream
You can integrate the S3ReadStream
class with the aws-sdk
package easily:
import * as AWS from 'aws-sdk';
import {S3ReadStream} from 's3-readstream';
// Pass in your AWS S3 credentials
const s3 = new AWS.S3({
accessKeyId: s3Env.accessKey,
secretAccessKey: s3Env.secret
});
const bucketParams = {
Bucket: s3Env.bucket, // S3 Bucket Path
Key: s3Env.key // S3 file
};
// Check the headobject like normal to get the length of the file
s3.headObject(bucketParams, (error, data) => {
const options = {
parameters: bucketParams,
s3,
maxLength: data.ContentLength,
byteRange: 1024 * 1024 // 1 MiB (optional - defaults to 64kb)
};
// Instantiate the S3ReadStream in place of s3.getObject().createReadStream()
const stream = new S3ReadStream(options);
});
To adjust the range of bytes grabbed from S3:
// You can adjust the range at any point during the stream (adjusting the speed)
stream.adjustByteRange(1024 * 1024 * 5); // 5 MiB
To adjust cursor position:
// You can move the cursor forwards to skip ahead (or back) in the file
// By default, the stream will skip ahead by the current Range
stream.moveCursorForward();
stream.moveCursorBack();
// Both of these methods also take in a `bytes` parameter for finer control
stream.moveCursorForward(10 * 1024); // Move cursor forward 10 KiB in file
stream.moveCursorBack(5 * 1024); // Move cursor back 5 KiB in file
You can alse use this S3ReadStream
like any other NodeJS Readable stream, setting an event listener is exactly the same:
stream.on('data', (chunk) => {
console.log(`read: ${chunk.toString()}`);
});
stream.on('end', () => {
console.log('end');
});
To work with zipped files:
import {createGunzip} from 'zlib';
const gzip = createGunzip();
// pipe into gzip to unzip files as you stream!
stream.pipe(gzip);
S3ReadStream(options: S3ReadStreamOptions)
Instantiates a new S3ReadStream
object.
Parameter:
getObject
method callgetObject
call (defaults to 64 KiB)adjustByteRange(bytes: number)
Adjusts the S3ReadStream._s3DataRange
property. Can be used to slow down or speed up the stream by grabbing a smaller or larger range of bytes.
Parameter:
moveCursorForward(bytes: number)
Adjust the S3ReadStream._currentCusorPosition
property moving the cursor forward bytes
amount.
Parameter:
moveCursorBack(bytes: number)
Adjust the S3ReadStream._currentCusorPosition
property moving the cursor back bytes
amount.
Parameter:
See s3-readstream
in action in an HD video streaming app example and read a blog on its origins.
FAQs
*Updated for AWS-SDK v3* Zero dependency S3Client streaming solution
The npm package s3-readstream receives a total of 3,858 weekly downloads. As such, s3-readstream popularity was classified as popular.
We found that s3-readstream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.