Home > other >  Deploying back-end and front-end on AWS
Deploying back-end and front-end on AWS

Time:11-04

I have a full-stack application with Node and express for the back-end (with Postgres in a AWS RDS created already) and Angular for the front-end.

Now, when running locally in development I have the back-end listening to port 3000 and conected a Pool client with a Postgres DB in AWS RDS. Separately, I have my front-end listenting to port 4200.

When running the server and the angular in these two different ports and opening my browser everything works fine.

Now my questions are about how to deploy this same structure in AWS all together.

Shall I deploy in AWS the back-end and front-end listening to these two different ports (as deployment) or they should listen to the same one and add a proxy server like Ngnix like I have been reading?

In the last case, how?

CodePudding user response:

If you have a simple setup, and you always deploy frontend and backend at the same time, one option would be: just let you express backend also serve your static Angular files.

This avoids any unnecessary complexity and components.

So, you have both frontend and backend exposed at the same port. Maybe all your backend APIs are listening under the /api route. Everything else is served statically, with a fallback to index.html for client-side routing.

By having frontend and backend on the same origin (host:port), you also avoid any CORS issues.

  • Related