Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to build a new webapp. My simple question is:

How can I choose my programming language according to my needs?

Someone can help me building a Programming Language Comparison?

share|improve this question

closed as not constructive by Quentin, gnat, Soner Gönül, Yuushi, middaparka Dec 29 '12 at 12:26

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

up vote 11 down vote accepted

Before getting into religious wars over pointers vs. no pointers, integers as first class objects etc. there are a number of non-technical criteria which should be considered.

  • What do your language skill do your current developers already posses.

  • What skills are readily available in your local marketplace.

  • If you hardware platform has already been decided then what langages are well supported on that platform, or, conversely will a language choice restrict your hardware options.

  • If you database has already been decided then what langages are well supported for that database, or, conversely will a language choice restrict your database options.

  • Is there a "standard language" used in your problem domain (e.g. nearly all geoligy is done with fortran); not choosing the domain standard will restrict your choice of languages, packages and experienced programers.

  • If you plan to interface closley with another application than there are advantages to using the same language. e.g. if you are writing a front end to a C++ back end than writing the front end in C++ will allow you to use the back end's structures and untility classes.

  • Evaluate the projects requirement's for speed of development, runtime efficienty, reliability and flexibility. Realisticaly you can deliver two out of the four.

Programming languages are just one aspect of a development environment, the goal should be to build a cohesive development environment that best fits your needs.

share|improve this answer
+1 for wise advice – Donal Fellows Nov 9 '10 at 5:59

A large factor is: what language do you already know?!

These links might prove useful:

http://en.wikipedia.org/wiki/Comparison_of_programming_languages

http://www.jvoegele.com/software/langcomp.html

share|improve this answer

Based on my experiences:

C++ : Only if you need the very best performance (games/simulation) or have a fetish for handling your own memory allocation.

C# and .NET : If you easily need to make some windows only application.

java for cross platform delight and good performance and huge standard libraries.

Python for cross platform delight and fast development.

Edit: And of course, the language you and your teammates know the best.

share|improve this answer
memory management is not the problem with C++. It's pretty rare that I write a "delete" these days. Smart pointers make the issue almost moot - but you still have the control when you really need it. The problem with C++ is too much complexity where it's not needed - largely due to backwards compatibility issues. – philsquared Dec 21 '09 at 7:25

well this question is kinda hard to answer, because it's pretty general. first of all you should factor in what you already know, then there's the question of what hardware you have. if you only have a shared server you should think about using php, because it's offered at pretty low prices. in the end if you know your technology well you can do anything with any language.

share|improve this answer

Try this list:

  1. Is there someone around who you can ask? Take his/her language.
  2. Can you use a framework/library to make your life easier?
  3. Try to solve a simple problem in several languages. Was it easy? Hard?
  4. Does the company have some rules? If you use the "official way", you can ask for support.
share|improve this answer

You'll most likely find that you can (with a great certainty) create the web application, which you want to build, using a number of available languages. And choice of language will always/often be subjective.

Are you starting completely from scratch? If so, you might want to consider a language with a low learning curve.

If there was a best way to perform software development, I'm quite sure that the vast majority would adhere to that.

Perhaps you could elaborate a bit more on what kind of application you're talkning about (tagwall, guest book or fully fledged alternative to slashDot?) along with your budget, experience and ressources.

share|improve this answer

Opinion: always use C++, armed with boost libraries of course. Interop is very hard to maintain, and at some point you always need parts of your system done in C++.

share|improve this answer

There are already seven answers to this question and you have accepted one of them, but I would still like to contribute something, since I think it might help you.

A week ago, I was in a similar position as you. I wanted to create a little web project and wondered which language would be suited best. For a webapp this is even more complicated than for a desktop program since you need a server-side language and a client-side language.

The possibilities are literally endless. Basically every major language can be used to set up a server: Java EE, Ruby on Rails, Python with Django, Javascript with Node, ...

On the client side the choices are huge, too: You could use plain Javascript, or one of the cross-compilers that generate Javascript. Moreover there are technologies like Flash or Silverlight.

It's really hard to make a decision. If you already have a "favorite" language, you might want to use it for the webapp as well. Java for example is probably one of the best choices for a commercial webapp since it has great server-backends. With the Google Web Toolkit you can compile Java to Javascript.

My personal recommendation is:

  • Stay away from Javascript. No offense meant to the Javascript programmers around here, but personally I think that Javascript is horrible.
  • Instead use a cross compiler. I've decided to use Typescript: http://www.typescriptlang.org/
  • With Typescript you can choose any Javascript framework you want and use it in your app, for many popular frameworks you can find type definitions here: https://github.com/borisyankov/DefinitelyTyped
  • For the server you can use Nodejs. Typescript is available as a node module and should integrate seamlessly in the node infrastructure.
  • A server framework you might want to take a look at, is this: http://expressjs.com/ It's supported in the github repo as well.

Well that's it. This is the structure of my soon to be webapp. Up to now I'm very happy with the combination. Typescript is a wonderful language. Its type model makes it very easy to use for beginners, since you get flawless support for autocompletion (I love Intellisense).

The two things that make me happy about Typescript are: this lambda (a:string)=>{alert(a);} and this list/array hybrid

var a=int[];
a.push(1);
a.push(2);
a.foreach((item:number)=>{alert(item.toString());});
share|improve this answer
@downvoter: care to comment ? – lhk Dec 29 '12 at 9:51

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