Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-s3-uploader

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-s3-uploader - npm Package Compare versions

Comparing version 1.1.9 to 1.1.10

2

package.json
{
"name": "react-s3-uploader",
"version": "1.1.9",
"version": "1.1.10",
"description": "React component that renders a file input and automatically uploads to an S3 bucket",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -43,3 +43,4 @@ react-s3-uploader

app.use('/s3', require('react-s3-uploader/s3router')({
bucket: "MyS3Bucket"
bucket: "MyS3Bucket",
ACL: 'private' // this is default
}));

@@ -46,0 +47,0 @@

@@ -56,3 +56,3 @@

ContentType: mimeType,
ACL: 'private'
ACL: options.ACL || 'private'
};

@@ -59,0 +59,0 @@ s3.getSignedUrl('putObject', params, function(err, data) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc