DEV Community

Discussion on: New Web Framework?

Collapse
 
jasonbradley profile image
Jason Bradley • Edited

The closest implementation I've seen to solving this type of challenge was utilizing Django + Django Rest Framework.

After defining your models (docs.djangoproject.com/en/2.1/topi...) you can utilize the Django admin interface (docs.djangoproject.com/en/2.1/ref/...) for handling CRUD type behavior.

On the API side you can rely on your previously generated models to build out a CRUD API.
(django-rest-framework.org/api-guid...)

You can also generate your web forms from the models as well.
(docs.djangoproject.com/en/2.1/topi...)

Collapse
 
monknomo profile image
Gunnar Gissel

Django is close to what I'm talking about. Particularly their admin pages.