For prototypes we normally flavour lightweight frameworks (à la Flask), and CRUD. CRUD approach is a factorisation of all frameworks into a single dynamic form that adapts itself to the model to generate HTML forms.
I call this the crudest CRUD of them all. It emphasizes writing no controllers, minimizing HTML views, and avoiding having to write SQL nor use an ORM.
What a developer wants when prototyping is to keep it simple: fewer files, minimal boilerplate, and clarity in data structures that define the application.
Collection
[
|
...
]