What are the software tools required in each step of the web development from getting the design to submitting to the client? [closed]

StackOverflow https://stackoverflow.com/questions/22473544

What is the web development(PHP - MySQL) process after designers deliver the design/look of a web site to the developers , to submiting the finished project to the project manager? Developing lets say being done by more than one guy, and it involves testing , debugging , database design etc. what are the steps a company follows or if i want to be a freelancer and what are the tools and knowledge required to do it efficiently?( free onces). I know HTML, CSS, Javascript(JQuery), php, frameworks (Laravel 4, CI). I hope i get answers from the experienced web developers which are going to help me join a company as a web developer or if i want to be a freelance web developer in future.

有帮助吗?

解决方案

This question is likely to be closed as the answer will change over time, so is not a good fit here. The "generic" answer is...

Source Control

If working as part of a team, source control is an absolute must (be it Mercurial, Subversion, Team Foundation Server or something else entirely).

This allows you to share work between team members and also covers the "What if Bob gets hit by a bus" scenario. At least Bob will know his code won't be lost, so it's not all bad...

An IDE

I consider an IDE to be crucial to productivity (Visual Studio/Eclipse/etc). I do know some devs who insist a text editor is all you need but I personally find I can get things done faster with an IDE.

A Build/Test system

You probably won't need to set this up yourself (at least not at first) but you'll need to write unit tests for your code. Quite often tis system is tied into source control (so a checkin will cause all unit tests to be run to make sure you haven't broken anything).

Of course, how exactly tests are defined will depend on the language/framework/project.

Maintainable code

Not really a tool but something I've found a lot of solo developers don't consider... When working with others, making sure your code can be understood by someone else can be more important than having it work efficiently. That means things like useful variable names (I once saw code that started $Zeus = $_INPUT[...]), making sure your code is DRY, not thinking of complex SQL queries as one long string, etc, etc. I could go on forever.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top