I am new to web development.

I know people prefer and use different technology stacks. Like ruby of rails, ASP.NET, LAMP. Also people argue relational (MySQL) vs. non (MongoDB).

This question is not about which is the best? Since that is a question of personal opinion.

My question is, Are there articles online which compare different tech stacks, arguing the pro's and cons? Can you post some links.

link|improve this question

67% accept rate
feedback

closed as off topic by Jonas, Joel, ChrisF, Ninefingers, Vladimir Dec 29 '11 at 12:05

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

up vote 1 down vote accepted

Wikipedia has extensive tabular comparisons here: http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks. It might be a good reference.

EDIT: (The OP asked for a little more.)

The question of when to choose one over another depends on many factors. Here are a few:

  • Your own familiarity with the underlying technologies. You might be better in Ruby than Java or vice versa.
  • The size of longevity of your system. Many people say static languages like Java are easier to maintain in the long run.
  • Performance characteristics. Some are tuned better than others. You might not need massive scale, but when you do, choose a framework that considers it.
  • Platform and Third-Party Libraries. JVM and .NET based frameworks have massively rich platforms and can make use of third party libraries for just about everything.
  • Number of technologies to learn. Frameworks like Node.js are popular because they have the same server-side language (JavaScript) as on the client-side (JavaScript).
  • Maturity. Is it buggy?
  • Popularity. If you will need to get engineers to work on projects with you, how easy will they be to find? How many people are available to answer your questions on SO when you get stuck?
  • Modernity. Would you be okay writing in C or use CGI?

Other bullets: Ease of caching, logging, database integration, etc. It comes down to matching capabilities with your own needs.

All that said, your original question did ask for comparison links. While there are several in the Wikipedia article, here are some others:

I'm aware most of the comparisons seem to be within a group (JVM-based, JS-based, PHP-based, "Frameworks of the Future" and so on. That seems to be the way of things for now. There is room for many kinds of frameworks.

link|improve this answer
good link, Ill bookmark this. Still the question is not completely answered. When to use which framework? – Abhishek Jul 15 '11 at 22:41
@Abishek, fair enough. Edited with more info. – Ray Toal Jul 16 '11 at 7:53
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.