Should I Start with the Frontend or Backend for My Medium-Sized Website?

0
15
Asked By CoolBreeze42 On

I'm working on a medium-sized full stack website using React for the frontend and Spring Boot for the backend. I'm wondering if it's better to kick things off with a static version of the frontend, complete with dummy data and users, or if I should dive straight into developing the backend with real users and APIs. What's the best approach?

5 Answers

Answered By UIWhiz01 On

In my experience, if you can, begin with key frontend features using mock data. It’s a great way to uncover logic gaps more quickly. Once you have a good idea of the UI, you can build APIs that cater specifically to client needs.

Answered By IdeaSpark73 On

Starting with a clear concept is key. Knowing your requirements will help you decide how to structure both ends effectively. Depending on your project, focusing on the server-side might make sense first, but be flexible!

Answered By DevGuru88 On

Personally, I like to tackle both the frontend and backend simultaneously. It helps to go back and forth between the two as the project progresses. This way, you can catch any mismatches or necessary changes along the way rather than waiting until one side is fully finished.

CodeNinja67 -

I do the same! I usually start on the backend, but I end up switching back to frontend as needed.

TechieTom22 -

I call it the sandwich approach: lay down some work on both ends and meet in the middle, adjusting as necessary!

Answered By PlanAhead56 On

It really depends on your style! I usually plan out features and the database schema before diving in. Once I have authentication sorted out, I can easily build out features without backtracking too much.

Answered By BackendBuff24 On

I’d recommend starting with the backend first. It’s easier to build the frontend around the backend logic you create, and having your APIs set up from the start lays a solid foundation.

FrontendFreak77 -

Exactly! Plus, having the backend complete means you can pull in real data for your frontend from the get-go.

CodeCraftsman99 -

Totally agree! The backend is like the foundation, the frontend is the house—all built upon it.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.