Is there a framework or solution that enables to create simple CRUD apps without a lot of duplicated development both on the back-end and front-end sides?<p>Something that can generate a functioning app based on just a model, or similar?
You might find PostgREST (<a href="https://postgrest.org/en/stable/" rel="nofollow">https://postgrest.org/en/stable/</a>) interesting. The 'Tutorial 0' gets right to the point with what you can do: <a href="https://postgrest.org/en/stable/tutorials/tut0.html" rel="nofollow">https://postgrest.org/en/stable/tutorials/tut0.html</a>
I’ve used Django, Next.js, and Ruby on Rails for CRUD apps recently (in 2023). If you want to minimize time spent writing boilerplate, Rails is still your best bet.
Have you looked at .NET MVC with Blazor? It might be overkill for your needs, but the templates give you a good starting point to avoid the usual boilerplate.
Budibase is great at generating CRUD apps based on a model.<p><a href="https://budibase.com/" rel="nofollow">https://budibase.com/</a>
Hi! 100% Hasura is what you need! This is our calling card, I work for Hasura and if you need instant CRUD on your database, new or existing you can’t go wrong with Hasura.<p>It’s kind of like PostGrest with GraphQL.<p>It does exactly what you want, you have a database with models and it gives you endpoints for CRUD in GraphQL and you can RESTify any GraphQL to make it into a REST endpoint as well.<p>It does it by introspecting the database then generating a schema, and the OSS GraphQL-engine that runs Hasura compiles the GraphQL directly to SQL.
afaik ...<p>without using a search engine - so i cant say "lmgt4u" - the following ones come to my mind:<p>* python with for example django<p>* php with for example laravel<p>* ruby with rails (2nd this ... not that i ever used it ;)<p>* java with for example spring-boot<p>* javascript/node.js with some crappy lib i can't remember right now<p>* ...<p>just my 0.02€
Django and its built in admin panel is still so impressive to me. Adding react admin would be a logical extension of that for a more flexible frontend.
I have some prebuilt tools in vanilla JavaScript. I just copy/paste what I need from my tools and use WebSockets. I can be up within 90 minutes with everything tested and have a large web app that fully loads around 800ms cold and as fast as 130ms in Chrome. Then the next day is content, database (optional), and finally event test automation in the browser.
Have you considered Power Apps model-driven apps[1]? You may not be interested in a PaaS solution however it is very easy to create a CRUD app from a model!<p>[1] <a href="https://learn.microsoft.com/en-us/power-apps/maker/model-driven-apps/model-driven-app-overview" rel="nofollow">https://learn.microsoft.com/en-us/power-apps/maker/model-dri...</a>
We're trying to build this with <a href="https://www.airsequel.com" rel="nofollow">https://www.airsequel.com</a>.<p>So far it generates the whole backend from the SQLite database schema and
we'll include an automatic webapp generator soon.
There is a React meta-framework named Refine for building CRUD apps like internal tools, admin panels etc.<p>However it's only for frontend.<p>Check out the CRUD app templates with source codes.
<a href="https://refine.dev/templates/">https://refine.dev/templates/</a>
I've used bootify to good effect: <a href="https://bootify.io/frontend/spring-boot-crud-generator.html" rel="nofollow">https://bootify.io/frontend/spring-boot-crud-generator.html</a>