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?
|
I have to build a new webapp. My simple question is:
Someone can help me building a Programming Language Comparison? |
||||
|
|
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.
|
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.
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. |
||||
|
|
|
A large factor is: what language do you already know?! These links might prove useful: http://en.wikipedia.org/wiki/Comparison_of_programming_languages |
|||
|
|
|
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. |
|||
|
|
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. |
||||
|
|
|
Try this list:
|
|||
|
|
|
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. |
|||
|
|
|
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++. |
|||
|
|
|
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:
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
|
|||
|
|