Better Programming

Advice for programmers.

Follow publication

Member-only story

How to Upload Files to AWS S3 From NextJS App

Simon Colby
Better Programming
Published in
8 min readApr 20, 2022
Requests trying to reach the different origin

NextJS is a frontend framework, and since the frontend doesn’t have an access to the different origins due to the CORS policy, it’s tedious to implement it if you’re doing it in the wrong way. Of course that you can alter going out requests in the next.config.js file with redirection from an API route, but then using NextJS serverless API which is super handy, lose its benefits. In this “fast, to the point” article we’re gonna go over the steps needed in order to make it work.

Btw if you prefer to work with ready code, you can find such here:

AWS S3

If you don’t know what AWS S3 is, S3 stands for Simple Storage Service and it’s exactly that. It allows you to store all of the different files online on Amazon servers, and retrieve them fast and safely. An additional bonus is the “pay as you scale” business model, which let you try the service out, even use it in production for free if you’re needs aren’t that big. With that said, let’s now focus on what we have to do in order to use it in our web app.

1. Create an AWS account

You can sign in to the console there. The difference between a root user and an IAM user is, that a root user's credentials are the credentials through which you’ve registered, providing your card and billing details. IAM user accounts are the ones, which you create for individual AWS services. Summing it up, you want to create a root user there.

Amazon sign in to the console page

2. Navigate to the S3 / IAM service

AWS screen after logging in

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Simon Colby
Simon Colby

Written by Simon Colby

Blockchain, crypto, full-stack. Make the world decentralised again 🌎

Responses (3)

Write a response