I am looking create small simple applications that are fun social toys. They won't be complicated, usually a one-type CRUD type deal. For example,
- Generate a random sentence (from source/algorithm)
- Store this in a database
- Present this sentence to the user
- Present a text box to allow them to enter their own sentence.
- record sentence in the database with a relation to first sentance
then another part of this site would
- grab entries from database
- present them in interesting ways via relationships.
Ok so that's just an example, but most of these fit this bill. Now I'm a drupal developer and I could do them in drupal but:
- It ties them to my site or one main drupal base (They are conceptually and visually independent)
- One drupal installation per site is not realistic.
- I'd like to use something other than PHP, preferably a functional language.
So I'd be interested in hearing about frameworks that are good for
- rapid prototyping of small, flexible and fast CRUD.
- preferably a functional language or some other language with interesting and new features (for a php dev).
- provide enough structure to not reinvent the wheel, but enough control to reinvent if i need to.
Thanks! - not PHP