What is the best code review practice for a handful number of developers on an ajax web application project?
-
Would you enforce pre-commit reviews? It seems that having a blocking code review greatly slows down development. Is there any alternative to have non-blocking code reviews? What percentage of time would the team spend on code review?
-
Answer:
Assuming a team of experienced developers, my approach is that every development item must undergo a code review before release to production (including supposedly "trivial" changes-- if it really is trivial the review should go quickly, and the review process will help flush out things that aren't actually trivial) but it can take place pre- or post-commit according to the developers' preference. I view the code review practice as yielding the most benefit in encouraging cross-training and sharing of knowledge within the group-- doubly so if the team is not co-located and has fewer opportunities for casual questions and discussion. The regular review practice emphasizes the importance of collaboration and resolving skill and knowledge gaps within the team. It also helps prevent individuals from developing "fiefdoms" around particular areas of functionality or technical tools which might put the long-term health of the project at risk. I have certainly seen code reviews provide value in catching errors and omissions, which is part of why I advocate making it a mandatory part of the development cycle. However, it is not meant to substitute for good quality assurance or release management practices (unit testing, functional testing, proper separation of development and production source code, etc.) so I give it relatively less weight in terms of time spent and leave the review format up to what the developers find most useful.
Sarah Karlson at Quora Visit the source
Other answers
Using a tool like ReviewBoard (http://reviewboard.org), I'd encourage you implementing a pre-commit review process with an optional override ability. This encourages a standard of reviewing code prior to submitting to source control, but provides a capability for overrides as an exception. You can also use a tool like IRC or HipChat (http://hipchat.com), and integrate group chat messages - so developers are alerted that someone needs a review. It's a great quality control step, and it ensures there's always two different sets of eyes on every line of code checked in. If you build it into your culture, my experience is that it doesn't slow developer productivity as greatly as not having such a process in place - and also encourages more sharing of best patterns and practices.
Tony Bako
I manage a small development team for an agency. We have between 4 and 6 developers at a given time (depending on contractors), and we do post-commit reviews on an as-needed basis. This keeps development moving, and leaves the code review process up to the individual team member. I.e., when an individual team member needs/wants a review, they can kick one off. This works well for us for a the following reasons: We have experienced programmers, and We primary work with the web framework Django, which gives us a lot of structure. We do QA reviews on the code's behavior. I.e., all new code is pushed through to a staging/test environment where our project managers pound on it. This ferrets out a lot of bugs. We use git to develop new code on an isloated branch or a non-production line of development. By following Django's conventions, we're able to push through a lot of code that is fairly standardized. For example, developing a form is straight forward in Django, so there is rarely a need to do a pre-commit review. (Django is just one example: something like Ruby on Rails or PHP's symfony will yield the same result) However, when we need to develop something tricky or complex, doing a review yield great results. However, even in these cases, we rarely see the need to do a pre-commit review. As long as it's not going into the main line of development before QA, there's a chance to test/review the code proactively. Your milage will vary, of course. A lot of complex and/or unique code that doesn't utilize a framework would benefit form more proactive reviews.
Brian Tol
Excellent question. My experience is that the ol' traditional code-review processes are extremely inefficient compared to what you get from a proper application of Pair Programming. A proper application of pair programming means that each pair contains at least one member who's keen on details and elegance. The code-review is on the fly that way. The pair must know they are supposed to come up with results which are of high-quality and also meet the constraints (timetables, etc.). i've been doing pair-programming way before the method had a name and the results were no less than astonishing, performance-wise and quality-wise. It has other benefits two, like the distribution of solution-domain knowledge, the speed by which newcomers are brought up to speed, and more. Another practice which further enhances the development, is the no code ownership principle, which goes hand in hand with proper practice of pair-programming: that means, any other programmer/pair of programmers may change, refactor and enhance another's code. That's also a code-review facet and an application of a third principle: On-going refactoring. Code should never aim to be perfect at the first shot - that's one of the lessons from which Agile emerged from....But that's another issue...
Avi Tshuva
You can use http://sourcetalk.netâit allows you to discuss the code in real time without actually blocking your development process.
Oleg Kalistratov
Related Q & A:
- What is the best form of zink as a vitamin?Best solution by Yahoo! Answers
- What is the best way to study for a test?Best solution by Yahoo! Answers
- What is the best way to look for a job in Australia?Best solution by Yahoo! Answers
- What are the best AP review books?Best solution by Yahoo! Answers
- What is the best job out there for a BSN prepared nurse without a license?Best solution by allnurses.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.