» I tried AppJet.com
Did you do something stupid and wanted to make a “Note to self” comment but no one is around to hear it?
It was really easy to understand and use. You only get one document though and it’s all javascript except for stuff you write under special comments like /* appjet:css */ for the stylesheet.
The persistant storage is automagic and all you need to do is create a new storable object and assign it to a variable in the storage object. I haven’t found out how to update records properly. Seems like you need to get, update, remove and add them again.
Conclusion: Great for prototyping!
Example:
if(!storage.notes){
storage.notes = new StorableCollection();
}
storage.notes.add({text: "hello world",
timestamp: new Date()});
