DEV Community

Discussion on: Building a URL shortener service series, Introduction.

 
rodiongork profile image
Rodion Gorkovenko

i wanted to put the frontend app in the same folder than the backend app and put maybe everything in a Docker

Honestly, that is (IMHO) the thing which we'd prefer to avoid. All frontend stuff should live at least on some static serving proxy (like nginx) or better some CDN (or something alike, like github pages).

In your application the traffic for logic (sending urls and short handles between backend and frontend) is going to be much smaller than size of all JS/CSS/PNG etc, right?

Thread Thread
 
simo97 profile image
ADONIS SIMO

yes