vote up 7 vote down star

Possible Duplicate:
Which language to choose and when?

Coming from Java/C++ world, I am interested in learning web development. I am a bit overwhelmed by the number of languages (e.g. PHP, Ruby, Python) along with their frameworks (e.g. CodeIgniter, Rails, Django).

Which languages are recommended for a new development? How do they compare in terms of performance, elegance of code, speed of learning, speed of development, scalability, adoption of domain services? Which one should I learn?

I am leaning towards using python, for the simple naive reason: If it is good for Google, it's good for me.

EDIT: Subjectivity: While I understand that the recommendation part is subject, I am hoping for concrete answers:

  • PHP is more popular and more mature, and has a lot of popular libraries.
  • Python has a compiled mode, so it doesn't get interpreted unnecessarily.
  • Ruby on Rails makes it is easy to provide Ajax without knowing JavaScript.
flag

what is your project? – johnny Sep 28 at 14:44
2  
should be community wiki – SilentGhost Sep 28 at 15:19
dupe stackoverflow.com/questions/93890/… – SilentGhost Sep 28 at 15:19
oh no not again: stackoverflow.com/questions/319421/… stackoverflow.com/questions/579302/… stackoverflow.com/questions/386421/… stackoverflow.com/questions/580458/… stackoverflow.com/questions/580458/… – Lennart Regebro Sep 28 at 15:29
Even duplicates bring new things. Sight – toto Sep 29 at 0:36

closed as exact duplicate by George Stocker, SilentGhost, Lennart Regebro, Tim Post, Oscar Reyes Sep 28 at 15:49

16 Answers

vote up 15 vote down check

I'm biased in favor of Python -- strong implementations on every platform, performance quite respectable (and increasing thanks e.g. to efforts such as Unladen Swallow, uncluttered code (no stropping, no block markers), extremely fast to learn, highly scalable (esp. when properly deployed on App Engine) -- I have no idea what you mean by asking about "adoption of domain services". In my case the causality goes the other way, i.e., Google hired me (and I was very interested in joining) because they were already heavily using Python and I was a well known expert (author of the book used as the standard Python reference at Google, etc).

So let me be balanced by mentioning pluses for "the other guys": PHP is the most widely used server-side language on the Web -- it's hard to get precise numbers but estimates are that more than 50% of sites use PHP. Ruby has long had a lot of "buzz" in its favor, especially thanks to Rails, and many of its design decisions, even where they differ from python's, are arguably elegant in their own ways (stropping instead of self and global, blocks instead of iterators and generators, re-openable classes, implicitly separated namespaces for attributes and methods instead of a single namespace, etc).

You have not even mentioned Perl -- "out of fashion" in the buzz sense but still very much out there, and used in the real world; it's a very large, complicated and rich language, takes longer than any of the others to learn thoroughly, but should at least be mentioned and considered.

And the language nobody respects properly -- and the one whose title to "the language of the web" is undisputable in its own way -- is Javascript. Its server-side implementations are probably not really competitive with any of the other languages we mentioned, but if you can deploy most of your code in users' browsers you'll start to find really strong implementations using highly advanced technologies -- Chrome, Safari, Opera, Firefox, are all getting very strong and compatible in this regard (IE lags, but Google Chrome Frame for it would compensate;-). The language itself has some very regrettable design choices from its early days which can never be really fixed (how do you upgrade >1 billion browsers?-), but sticking to a subset, and with frameworks such as dojo or jquery, it's usable. And it unlocks for your programming platforms such as Palm Pre and the future Google Chrome OS, where you don't really get many options...

That being said, it's still true that JS is less efficiently deployable server-side, as of today, than the alternatives, so a twin-language strategy (server-side / client-side) remains advisable. But if you're keen to learn only ONE language, do consider JS!-)

link|flag
1  
Dear Alex Martelli: great answer! – anonymous coward Sep 28 at 14:52
agreed... very strong answer – Neil Hickman Sep 28 at 15:42
2  
You lie, sir! That first paragraph exposes your true nature as a Lisper! – Chris Lutz Sep 28 at 15:49
1  
@Chris, you caught me out -- an old LISP 1.5 manual bought cheap at a garage sale (well before there were cheap-enough machines to buy and run Basic, Forth or machine language on) was indeed my first exposure to programming (I "ran" the examples and exercises via pencil, paper, and my mind;-). Guess you can't take the parentheses out of the boy;-). And of course, my friend and colleague Peter Norvig's essay at norvig.com/python-lisp.html shows why a closet Lisper might get interested in Python (though the performance situation w/Python's much better now;-). – Alex Martelli Sep 28 at 16:45
vote up 9 vote down

I've covered a few, and I'd really recommend starting with Python/Django, they are both simple, powerful, well designed systems that make it easy to do the right thing. If you're already a programmer, then Python won't be too hard to learn, and you'll be glad you're using a proper, maintainable, elegant language.

I'd go one step further if you're just getting into this and recommend developing on Google App Engine. Why? Well - they've made a lot of design decisions for you, meaning there's actually a lot less that you have to learn. Much like Ruby on Rails (which I've never tried), the fact that theres "one true way" of doing things speeds up development considerably. #

Just to make sure I've ticked all your boxes: The scalability & performance of GAE is not bad at all ;)

link|flag
But he can write Java for GAE, which he already knows. – jrockway Sep 28 at 14:33
Not a bad idea at all and I wouldn't say no. In fact that's a good way to learn the GAE framework without the "learning 2 things at once" overhead. But GAE/Python gives you that streamlined, simple, one way to do things benefit. Plus it sounds like msaeed wants to learn something new. – Rob Fonseca-Ensor Sep 28 at 14:37
+1 w/ caveat: Starting fresh and trying to run Django on GAE may not be a good idea. Start with one or the other. Django definitely gets my vote. It's like a breath of fresh air. – anonymous coward Sep 28 at 14:43
There is not "one true way" in Ruby on Rails. That statement is flagrantly false. – railsninja Sep 29 at 4:40
Well i wasn't trying to be flagrant sorry. But my understanding is that rails does try and keep you "on track", hence the term "rails" – Rob Fonseca-Ensor Sep 29 at 16:35
vote up 5 vote down

If you know Java, why don't you do web development in that language?

Java is widely used for web development. Check out JSF or Struts 2. I'm sure others will have recommendations for other frameworks.

If you want to try another language, go ahead, but it's certainly not necessary for web development.

Edited to answer your EDIT:

  • Java is popular in large companies, mature, and has a lot of popular libraries.
  • Java compiles to byte code and the JIT compiler is fast.
  • Popular libraries can make it is easy to provide Ajax without knowing JavaScript.
  • According to Joel, if you know Java, use Java.
  • In a previous question, the consensus was to use what you know.
link|flag
5  
Java might be usable, but web programming in C++? – Marius Sep 28 at 14:27
2  
You could do web development in C++. My brain hurts at the thought though. – George Stocker Sep 28 at 14:27
You could make a marathon without using your legs. It's still easier with. – subtenante Sep 28 at 14:29
1  
And if you know Java, there is GWT. – Török Gábor Sep 28 at 15:09
1  
Java is also hideous. Stick to PHP, Python or Ruby. – Jamie Rumbelow Sep 30 at 7:36
show 4 more comments
vote up 3 vote down

I would say PHP just because of how widely used it is. I learned PHP and ASP as my first web languages after doing JAVA/C for years and I like knowing the split between the Windows/Linux split. I don't know python so I might just be a bad example.

Plus if you want to freelance, there is a ton of PHP work out there compared to other languages.

link|flag
vote up 3 vote down

I would recommend PHP, the barrier to entry is lowest. Though Python might be harder for you to learn, it's probably worth it.

This question (and my answer) is completely subjective and appears to have been asked more than a few times.

link|flag
2  
Why do you think learning Python will be harder than learning PHP. What about Python is hard to learn? – jrockway Sep 28 at 14:34
2  
Well since we're sharing opinions... It's been harder for me! – jjclarkson Sep 28 at 14:36
Then write that in your answer! (Why was PHP easier? Didn't its "ease" come back to haunt you later on?) – reinierpost Sep 28 at 15:39
vote up 3 vote down

Python! It's a perfect langauage and you will be able to use the Django, most promising web framework at the moment. I was in similar situation and made this choice for me.

link|flag
I'm not sure I would call it "perfect", but I definitely enjoy using it. :) – tgray Sep 28 at 15:06
vote up 2 vote down

I asked myself the same exact question a few weeks ago. I'm also a Java developer, and have chosen to take a look at Scala. It's a functional OO language that is built on Java and runs in the JVM, so it can use existing code and libraries, and it usually performs better than major interpreted languages such as Python, Ruby and PHP. It also has a web framework called Lift that looks promising, particularly for the Ajax web apps I'd like to write.

I did use Python for web development quite a few years ago, and it was a little rough. However, I'm sure there has been a ton of work done on it since then, and I've heard good things about Django.

link|flag
vote up 1 vote down

Depends on what you are trying to do. The essentials are HTML (not a programming language, but markup) and Javascript. If you know Java, then GWT might be great for ya. Even easier - Grails (groovy on the server side) and GWT (Google Web Toolkit) to develop on the client side. But definitely start with a good understanding of HTML, CSS, and Javascript. One of the fastest ways to learn is to look at what websites do - www.GetFirebug.com

link|flag
vote up 1 vote down

Most of the pros and cons of all three languages have already been posted. I would recommend taking a brief look into all three languages before deciding on which you will choose. Just learning enough to write some short scripts should be enough.

(I was in a similar situation some time ago, and eventually decided on Python)

link|flag
vote up 1 vote down

You could always use Java itself for web development. But if you wish a change, then...

I think that you should learn Ruby; whether you pick RoR, Sinatra, Ramaze or whatever is up in the air for each project or person. My reasoning is as follows. (Also, understand that I actively use PHP as well, but prefer Ruby to it.)

  • Ease of Adoption

    • Ruby's general syntax is easily learned, especially from a Java background. Should you choose Python you need to learn more, because indentation replaces the words and curly braces you're accustomed to.

    • In spite of monkey-patching, Ruby's object model is very powerful. I don't know whether it is more powerful than Python's model, but it is easily more powerful (and less fraught with complications) than PHP's object model. In spite of lacking a number of features in Java, these features are quickly implemented through existing language features (like abstract methods).

    • You can learn and use JRuby, extend the language as you require for your project or interface with Java code as necessary. A nice way to bring your existing skill-set to bear on your new language, I think.

  • Performance & Scaling

    • Ruby is efficient enough; premature optimization and scaling are the root of many kinds of evils.

      If you have trouble with scaling, try Nginix as a front-end proxy to multiple threads per server, and put your database on its own server. (It's just about universally understood that the biggest overhead of a web app is its database access, not the language.)

    • Scaling is only important when required, and in abstract consideration. Ruby scales, performs well, and is easily put on multiple servers and synchronized through Capistrano.

    • Technically, Ruby runs in an imitation of fcgi, thus the project is loaded, compiled/interpreted, and from there little reinterpretation takes place (unless you let it re-load changed files, of course).

  • Elegance

    • As someone with a background in Object Pascal and PHP, Ruby is so much more expressive and elegant in the same space, if not less. Python is strange and esoteric to my eyes, even though I've used Lisp in the past (and Python seems to be a Lisp that trades parenthesis for spaces).

    • Some language features like the case statement, and the ability to be free in your placement of if, unless (negated if), while, etc, makes Ruby more like English than Pascal was ... without the feel of Smalltalk.

link|flag
vote up 1 vote down

I've been very pleased with ruby on rails, which is a fast and enjoyable web development.. I also hear good things about Django, which I believe is sort of a python clone of rails. Some people ( that would include me ) have a very hard time adjusting to the braces-is-white-space syntax of python, though, which leads me to suggest ruby-on-rails over django. If you are looking to be more attractive for jobs, though, PHP might indeed be the best one, though elegance is not exactly a force for PHP. In short

  1. Ruby on rails: I know this one is good. It is an interesting deviation from the endless configurations found in many other systems.
  2. Django/python: I hear good things about this one, though the whitespace issue makes me wary to recommend it.
  3. PHP: By far still the most used one. If you want marketability, this might be the one, though since you already know Java you might not really need this.

There are other solutions, of course, most notably the Java-based frameworks, most of which is like you would expect from Java: Lots and lots of XML, configuration and boilerplate code.

Finally, you might want to visit wikipedia's take on this question, overwhelming as it is.

link|flag
vote up 1 vote down

What about ASP.NET MVC with C#? C# should be somewhat familiar to you as a Java developer, and I find the MVC framework to be very enjoyable to work with.

link|flag
I don't think that MVC is as sparse as your answer implies, I've used it in PHP and Ruby, and know that Java and Python have it too. – The Wicked Flea Sep 28 at 15:14
I'm not sure what you mean? – mgroves Sep 28 at 16:30
vote up 0 vote down

If you're coming from a Java background, I'd say ASP.NET/C# could be a good bet, as the C# syntax is very similar to Java's.

I find it a great language to develop in - good tools, lots of support from the web commmunity etc. But as you say, it's pretty subjective.

link|flag
vote up 0 vote down

Learn Perl , it has been the past(mostly) , the present and it will be the future. The Rakudo implementation of Perl6 is coming out spring 2010 , and Perl5.10+ is a very nice language ( I only like >5.10 so I don't know about any other version ). Check out Perlmonks.org , check out CPAN , check out www.perl-community.de , check out learn.perl.org , Check out perlbuzz.com , Check out the books Check out the IRC Channels , check out one of the mailing lists , Check it out :)

(And I haven't covered even a third of the community , there are still a lot of sites/blogs/frameworks I haven't mentioned ).

link|flag
vote up 0 vote down

I first learned on PHP, which is easy to get into because it's more scripting-language oriented. I then learned Java, which is harder to get into since there's a lot more concepts and framework to get used to.

However, I most recently learned Python + Django, and I wont use the other two if I don't have to. It's a "cleaner" language than PHP (subjective, I know), but it's incredibly helpful. When you've worked in other languages and start Python, it just seems like they thought it through and that it's geared towards helping you. Often in PHP I was frustrated that functions & libraries seemed like they just grew organically with no organization or planning, which is probably very accurate. Python seems to be more consistent & coherent as a whole.

Then you add Django, and it's amazing. I've used Java EE beans, Hibernate, etc, and while they were wonderful in what they provide as frameworks, they are also very "heavy" and complicated. It took me a while to get used to the details of how they work, especially with so many layers. With Django, I got all the benefits of these larger frameworks but it's a whole lot simpler, and is much easier to deal with.

You can get the same benefits in PHP by using one of the popular frameworks, but I've never seen a language & framework combo that works as well as Python + Django. If you don't go for that, I'd suggest Ruby on Rails since it seems to be the closest thing in terms of philosophy and design.

Good luck!

link|flag
vote up -6 vote down

I would recommend Python, because it is a really elegant Programming language, It's object oriented like Java, which you already are proficient with and there's no shortage of good web frameworks.

if that's not enough, think appEngine.

Now to the level of suckiness of languages, check this out:

http://www.google.com/trends?q="php+sucks","python+sucks","java+sucks"&ctab=0&geo=all&date=all&sort=0

link|flag
2  
afaik PHP is a real language – iAn Sep 28 at 14:44
I fully agree with piynsoi, although PHP is slowly coming of age, but without stating reasons for disliking PHP it isn't an informative answer. – reinierpost Sep 28 at 15:38
i agree with iAn, php is a real language and also you can use OOP in php as like java. Really should rethink your answer – Neil Hickman Sep 28 at 15:39

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