Questions related to streaming multer storage engine for AWS S3.
Questions tagged [multer-s3]
210 questions
0
votes
0 answers
Grant per user access to S3 bucket key using Multer-S3
I am uploading images to my S3 bucket via multer-s3. Everything is working fine, the images gets dropped in my bucket.
var cloudStorage = multerS3({
s3: s3,
bucket: 'mybucket',
acl: 'bucket-owner-full-control',
serverSideEncryption:…

manneJan89
- 1,004
- 8
- 27
0
votes
1 answer
Upload with dynamic Filename - multer/s3
I use multer/multer-s3 to upload a Profilepicture to Amazon S3.
The Upload works well when i use a static filename like 'userPhoto_' which matches the the fieldname in the form.
var upload = multer({
storage: multerS3({
s3: s3,
…

Thomas Hummer
- 1
- 1
0
votes
1 answer
how to secure s3 files with trusted signed users using cloudfront aws-sign?
I need to secure my files which should not get directly played or downloaded in the browzer after copy pasting the link in the browzer.
Below is my app.js file:
var express = require('express'),
aws = require('aws-sdk'),
bodyParser =…

Jagadeesh
- 1,967
- 8
- 24
- 47
0
votes
1 answer
Securing s3 files ,Not to display the content when link is given directly in a browser?
I am using nodejs npm-multer s3 to upload my video/audio/image files to amazon s3 bucket.
I am using the below policy to enable permission for viewing my files through my mobile application
{
"Version": "2008-10-17",
"Statement": [
…

Jagadeesh
- 1,967
- 8
- 24
- 47
0
votes
1 answer
zero byte file is created in s3 while trying to resize and upload using multer in nodejs?
Below is my app.js file.. Whenever i make an attempt to resize and upload my image using multer-imager module a zero byte file is getting created everytime and i am not getting any response (keeps loading on post…

Jagadeesh
- 1,967
- 8
- 24
- 47
0
votes
1 answer
How to use multer-imager npm module in nodejs and upload my image resized to amazon s3 bucket?
/********app.js***********/
var express = require('express'),
aws = require('aws-sdk'),
bodyParser = require('body-parser'),
multer = require('multer'),
imager = require('multer-imager'),
multerS3 = require('multer-s3');
var…

Jagadeesh
- 1,967
- 8
- 24
- 47
0
votes
1 answer
Node-SDK Access Denied Upload file in S3 Bucket: putObject() VS multer-3s
When I try to use aws.s3(), everything works fine, my bucket is created with the appropriate key.
var s3 = new AWS.S3();
// Create a bucket and upload something into it
var bucketName = 'node-sdk-sample-' + uuid.v4();
var keyName =…

sirineBEJI
- 1,170
- 2
- 14
- 25
0
votes
1 answer
Access denied while uploading image to AWS S3
Objective: I have my Node.js app deployed as an Elastic Beanstalk instance on the AWS. I've to upload an image onto AWS S3.
Problem: It's giving me 'Access Denied' when I do so. Although it works perfectly okay when I do it locally (before pushing…

aayani
- 333
- 9
- 19
0
votes
1 answer
Is it possible to upload a server file to cloud using multer?
I want to upload a file which is being generated on my server conditionally in a directory, and I am using multer-s3 package to upload files to S3 service.
Is it possible to upload that generated file from server directory to S3 using multer-s3?

Aatman
- 573
- 1
- 5
- 17
0
votes
2 answers
Uploading Large Files on AWS S3 bucket
I am trying to upload large files(PDFs, Videos) through my angular web app to AWS s3 bucket. i am using ng-file-upload for uploading file to my node server,and on node i am using multer-s3 npm package.
For small files it is working great as…

Ravi Shankar Bharti
- 8,922
- 5
- 28
- 52
0
votes
0 answers
Nodejs - Access Middleware Object - Multer-S3
I am using the multer and multer-s3 modules to bulk upload multiple files, but after the files are uploaded, I would like to access the newly imported files to then be used within my page, but I can't seem to figure out the best way to access the…

cphill
- 5,596
- 16
- 89
- 182
0
votes
1 answer
node.js express multer issue uploading images to s3 using multer-s3 npm
I have a problem uploading images to S3 using multer and multer-s3 npm with node.js and express.
I have read the documentation of multer and multer-s3 and followed the tutorials, and searched on stackoverflow and other websites to solve my issue but…

Magomed Souleymanov
- 37
- 1
- 8
0
votes
1 answer
Amazon S3 how to control download(get) file with node.js
In my node app I need to allow just some user to be able to download files...
How can I do it with amazon S3?
I am using MulterS3 for upload:
https://www.npmjs.com/package/multer-s3
Which ACL should I use in my app?

Vladimir Djukic
- 925
- 2
- 9
- 28
-1
votes
1 answer
How to call two different file upload methods in 1 route in express.js
Suppose i have a post request route:
router.post(
"/create-listing",
fileUpload.uploadListingPhoto.array("images", 12),
listingsController.createListing
);
I would like to call a different fileUpload method within the same route, hence i need…

pasoc30
- 141
- 2
- 7
-1
votes
1 answer
how to upload files to amzon s3 through form data?
I am trying to upload my files to my Amazon S3 bucket. In my research I got this link which worked fine and the files got uploaded:
https://github.com/zishon89us/node-cheat/tree/master/aws/express_multer_s3
But I need to concatenate this to my web…

Jagadeesh
- 1,967
- 8
- 24
- 47