Reputation: 14997
I'm particularly fond of the way the following SAAS companies have enabled application development through-the-web. Many of them allow, through-the-web definition of tables, views, relationships, forms, dashboards, email-notifications, charts, calendars, cross-tabulations, and role based security. They are:
Other Interesting PAAS
I've also found these open source products that offer through-the-web application development. These tend to use Javascript components that interface via a REST interface. The Javascripts components can typically be switched into "development" mode and configured to have custom data sources, respond to events, and be styled.
WaveMaker (Open Source Java)
SmartGWTPro
AribaWeb
Are there any other through-the-web application development frameworks? I'm especially looking for the closest thing offered by Ruby or Python?
Upvotes: 5
Views: 800
Reputation: 988
If you are looking for tools allowing you to create a software without coding, you have different tool categories:
In OpenSource :
you have the CMS Drupal, allowing you to create you data structure, then display listings (with module "Views") and forms...
You can create a complete Web based Software with Drupal and his tons of modules...
You can install and test Drupal online here : https://simplytest.me/
Upvotes: 0
Reputation: 15413
Check out Zenbase platform as well.
It's web-based platform for non-coders to create data-driven web apps using a simple GUI.
Some of it's features:
Upvotes: 0
Reputation: 172209
Depends on what you mean with development.
Zope 2 is the original through-the-web (I'll say TTW from now on) development platform, and has done TTW dev since 1998 or so. It's in Python and is awesome in many ways. The TTW development is not one of those ways. :)
Creating forms and schemas, and editing the workflow etc TTW is a great idea. Calling it development is, well, not so great. :) Zope lets you write Python code. That is real TTW development, and it's a bad idea for many reasons.
Now big, advanced deep configuration TTW, including schemas and workflows, yes. TTW Development, no. Bad idea.
The excellent CMS Plone, which runs on Zope 2, is moving away from TTW development (although it's still possible and supported in Plone 4, just frowned upon), but still allows TTW configaration of large parts, including workflow, forms and with Dexterity (which is it's new content type framework) also content type Schemas.
Upvotes: 5