Reputation: 3145
which framework helps in reducing the number of lines of code needed to create a web app?
ruby on rails? php? asp.net mvc? jsp/servlet? django/python?
I just don't like typing a lot of code especially if it's boilerplate. If I can write 10 lines of code versus 100 to get the same results, I think most people would prefer 10...right? So, tell me which web framework will acheive this goal.
Upvotes: 2
Views: 387
Reputation: 906
SilverStripe requires almost no lines and no understanding of PHP. It comes with the UI, Auth, and everything you need to get started.
http://www.slideshare.net/chillu/modeladmin-in-silverstripe-23
http://doc.silverstripe.com/doku.php?id=modeladmin
Upvotes: 0
Reputation: 32126
The answer to the question is completely circumstantial; certain frameworks will require less lines of code for specific purposes. Perhaps if you can give the StackOverflow readers an idea of the kind of task you wish to accomplish, they can point you in the direction of the framework that is most likely to accomplish the task in fewest lines of code.
Upvotes: 0
Reputation: 15907
For a complex application: Seaside. None of the others comes close. Especially when you run it on a OODB like Gemstone: Glass
Upvotes: 0
Reputation: 11932
I think you can answer this question yourself with this way: Do the get started project.
In my case was: django/python
, why?, see the get started project, will take a 1 or 2 hours to understand/develop/deploy, and not python knowledge required, just a hyperactive open mind.
Upvotes: -1
Reputation: 943645
All of them.
I wouldn't use "Shortest program" as a guiding factor in selecting one though.
Upvotes: 3
Reputation: 11509
It really depends on what backend and DB you are using to support your web app.
I mean, if you are consuming .Net web services then I think asp.net (and visual studio) would be the best match to generate all code behind classes to consume the data strongly typed. Other backend/db maybe make you choose a totally different path.
Upvotes: 0