next-s3-upload icon indicating copy to clipboard operation
next-s3-upload copied to clipboard

Upload files from your Next.js app to S3

Results 47 next-s3-upload issues
Sort by recently updated
recently updated
newest added

Currently using the AppRouter configuration `export { POST } from "next-s3-upload/route";` There is no way to add a custom endpoint

Hello and thank you for your fantastic work! Is there any way to understand when a multiple files upload is completed? I want to trigger an event when the upload...

question

We're using Next-s3-upload to upload to a single bucket currently. This sufficed for a single use case up until now as we have a strong security requirement to keep the...

I have a custom API route which might throw an error when a user is not authenticated server-side. How to properly catch this error on the clients-side uploadToS3 function? Simply...

Hey, first of all, thanks for the library. It works fine so far, the images get uploaded but I always get the following errors. Have you come across this issue...

Hi, firstly thanks for this awesome package! I integrated this into my app a while back and I absolutely love it. After a long needed update of all my npm...

bug

It's rather useful (especially if filesizes are large), to be able to abort an upload Just need to modify: https://github.com/ryanto/next-s3-upload/blob/master/packages/next-s3-upload/src/hooks/use-uploader.ts#L122 Looks like this: ```ts let controller = new AbortController(); fetch(url,...

enhancement

The application we are working with uploads objects to buckets with Object Lock enabled, where a retention period is set, using `usePresignedUpload()`. However, as per the AWS documentation, it is...

Allows the user to configure expiresIn of the signed url generation.