Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What to learn first, Front-end or Back-end development? [closed]

For most of you web developing guru's my question will sound stupid, but as newbie I would like to ask if it is ok that I will have a frontend developed and only after Backend?

Also, if I will need database should I have the design of it first?

I also would like to know about the analysis part of the project. A friend in short informed me that to start the project requirements analysis (internal, technical and design) is a must. LEt's say if I want to build an social e-commerce site with ability for users to register. Can you determine a numbered list what would you do to prepare the analysis for such project (etc. 1. Database design a) prepare data models...)

I would be very happy if somebody could provide with a thorough answer.

Thank you.

Regards, Donny

like image 566
funguy Avatar asked Jul 07 '10 19:07

funguy


4 Answers

I usually decide what fields I need in the front end 1st.

Then start working on the database backend..then middle tiers with unit tests..then finally front end.

Of course, once I start work on the front end, I think of more fields or changes for the database....such is the nature of development.

like image 101
Ed B Avatar answered Oct 16 '22 21:10

Ed B


I think this question is really a variation to the question whether the bottom-up or top-down design is better. I find that it helps to do rough drafts of the front end to simulate typical usage of the site. This helps one to see required backend options one would have missed otherwise (thinking needed data).

like image 42
data Avatar answered Oct 16 '22 20:10

data


Especially when new people are working with project, I'd suggest an incremental approach.

Pick some functionality you know you're going to need. Start with the database (SQL), then the backend code (PHP, maybe), then the web frontend (HTML). Make it as simple as possible to accomplish that one block of functionality. The order of things doesn't matter as much as just taking a small chunk at a time to work on.

Once that small part works, save a copy. Version control, even. That way, you can always return to something that worked if you screw something up tomorrow.

Then pick the next small function and add it in. I always find this very motivating; you get to see consistent improvement.

I'd probably plan ahead on the database level, because while any change to the HTML only really affects the HTML... database changes often require backend code changes which often require HTML changes, and having to redo everything is painful.

like image 22
Dean J Avatar answered Oct 16 '22 20:10

Dean J


You should architect the tiers that you expect to exist in the whole system. Each tier can be parallel architected/implemented by different people, however integration points will require collaboration to decide on the contract.

There are two general interface/contract patterns:

1) Consumer/Application Needs -> interface/contract is dictated by the application and the next tier is written to conform/adapt to those needs. All of the tiers are now essentially driven by their downstream consumers. The pro is that you will likely have the most efficient and limited set of methods required, the downside is there is more work to adapt the system to other consumers.

OR

2) Service Provider -> interface/contract is dictated by a service which is designed to support a core set of common functionality that may service many apps, even some yet to be known. The application that consumes the provider must then adapt the contract's capabilities with its internal needs. The pro is that the service is more re-usable without modification, however those generalized methods will likely be a less efficient fit for any particular app's needs.

Neither of these is the perfect answer, it depends on the situation. The decision of 1 or 2 above may also differ depending on which tier connection you are working on. You could have a service with a service contract #2, an app with its own needs contract #1, then an adapter tier that maps the apps needs to the service's functionality.

Regardless of which pattern you use, the architecture of your tiers, their contracts, and how they interact with each other is more important than when you start working on any particular tier.

In general once the tier design is in place, you work on the tiers where the contracts are defined and followup on the tiers where contracts are consumed.

like image 1
David Avatar answered Oct 16 '22 21:10

David