
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
@metarouter/emitter-s3
Advanced tools
Wrapper for the AWS.S3 client that will emit an array or stream of JSON object to an s3 file.
Import the S3Emitter from 'emitter-s3' and pass in an options object to the constructor.
const S3Emitter = require('emitter-s3');
const options = {
filePath: 'my/file/path',
bucketName: 'my_bucket',
region: 'us-east-1',
awsAccessKeyId: 'accessKeyId',
awsSecretAccessKey: 'secretAccessKey'
};
const emitter = new S3Emitter(options);
The file path at which your s3 files will be stored.
Default: true
By default, this will make the filename an ISO formatted date string. You can use filePath to create a path prefix with the filename as the timestamp.
The name of your S3 bucket.
The region in which your S3 bucket is.
AWS S3 supports server side encryption. If your bucket policy requires the server side encryption header to be set, you can specify that here.
Possible values are 'AES256' or 'aws:kms'.
Emits the data to an s3 file. Returns a promise.
await emitter.emit(data);
// or with promises
emitter.emit(data).then(function () {
// do something after uploading file
});
Released under the MIT License.
FAQs
Emits an array of JSON object to an Amazon S3 file.
We found that @metarouter/emitter-s3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.