DEV Community

Cover image for The flow of building a full-stack web application
Rakesh Potnuru
Rakesh Potnuru

Posted on • Edited on • Originally published at itsrakesh.com

18 1

The flow of building a full-stack web application

When I am new to web development I often have confusion on how everything works together, how to connect all the things, how a full-stack web app is built from scratch, how to plan everything, what all the necessary stuff and so many... If you are also a new web dev or learning web, then I am sure you have also lots of confusion. So, in this blog, I try to reduce that confusion up to some point by giving you a high-level overview of building a full-stack web application.

Before we start

Before reading this blog, there are a few things to note,

  • This is my preferred way of doing things, you may not need to do exactly like this.
  • This flow is for small or intermediate level applications.

Let's get started

Phase 1 - Strategy

Strategy

Before jumping into the project ask yourself a few questions-

  • Why I am doing this?
  • Who are my audience?
  • What tech stack do I need?
  • How much time it may take?
  • How much budget it may take?

Phase 2 - Design and Prototype

Design and Prototype

No one starts a project without having a proper design, even if you do you will end up creating a big mess. So get a design first. Find inspiration from websites like Dribbble, Behance and then use tools like Figma, Adobe XD, Sketch etc... to make a design and prototype.

Read my blog about web design principles.

Phase 3 - Development

Development

Development is again divided into three sub-phases.

1. Frontend

1. Development

So you got the design, what next? Start building Frontend with any framework or library.

Widely used frontend frameworks/libraries-

  • React
  • Angular
  • Vue

Must go through this Front-End Checklist and make sure everything is ok.

2. Testing

Testing is as important as building. Use a testing library to test the frontend. Make web site responsive. Use tools like ngrok to share your localhost and get feedback.

2. Backend

1. Development

Frontend is ready! Let's start building the backend and REST API.

Widely used backend frameworks/libraries-

  • NodeJS
  • PHP
  • RoR

2. Testing

Use tools like Postman or Hoppscotch to test your API. Use jest for NodeJS, PHPUnit for PHP and so on...

Now connect frontend and backend. Test whole application.

This may help you-

3. Deployment

Development done! Now containerize your application with docker, set up CI/CD pipelines and do all the DevOps stuff. Or if your website is small and simple just directly deploy on hosting services.

Phase 4 - Execution

Execution

Now comes the final phase and most important phase.

Recommended things to do after developing your application-

That's it! This is the high-level overview of building a full-stack application.


⚒️Tool of the week⚒️

Squoosh

  • Squoosh is a free image size reducer tool while maintaining high quality.

I hope you find this useful.
Follow for more weekly awesomeness.
Twitter?

Sentry blog image

How I fixed 20 seconds of lag for every user in just 20 minutes.

Our AI agent was running 10-20 seconds slower than it should, impacting both our own developers and our early adopters. See how I used Sentry Profiling to fix it in record time.

Read more

Top comments (1)

Some comments may only be visible to logged-in visitors. Sign in to view all comments.

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay