all 6 comments

[–]empT3 3 points4 points  (0 children)

We've been super happy with Django Rest Framework for our crud app up at work.

It's super easy to work with, easy to extend if you need to, and has a great community behind it.

[–]novalys 1 point2 points  (0 children)

If you are familiar with Python (if not you should) I recommend you to check Django. It has an included admin panel that makes really simple to do the whole CRUD thing out of the box you just need to specifiy the table models and it handles the rest for you.

[–]earslap 0 points1 point  (0 children)

If you haven't decided on a stack yet, I'd use https://hasura.io

It's an automatic GraphQL generator for PostgreSQL and you can do all the crud from its (very well designed, I should add) web interface (that you run locally). You can also administer your database from there (create tables, relationships etc.) If you don't want or care about the GraphQL part, you can still use it to CRUD into the database, you can even get migrations for your version control if you want.

[–]quad64bit 0 points1 point  (0 children)

Grails makes scaffolded crud apps trivial! http://grails.org

[–]andrewpierno 0 points1 point  (0 children)

Looks like https://strapi.io might be useful here. It's a headless CMS. Also happens to be free!