Django Literally just create a django project, code your data models, and register them with django admin. Users and login included
Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
11–20 of 38 posts
Re: Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
#12If I suspect it's going to be bigger I have been sticking to Spring Boot + Kotlin which has been very productive but it has a lot of magic going on that it sounds like you were trying to avoid.
Re: Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
#13Just this week-end, a friend had an idea that he wanted to make a list of healthy products. I suggested Google Sheets as a starting 'database' and see where we move from there. He had some issues with inserting images to it though so I just created a sanity.io project. I think we were good to go in about 20 minutes with both a backend admin area and an API.
The next steps are to:
A - Build mobile app
B - Actually move the data from Sanity to a self hosted CDN
--
[1] I don't work for Sanity, but I'm also not a stranger to them.
Re: Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
#14But I will say Flutter Web is rather ugly compared to React... React has had UI libraries for years which are way beyond anything flutter can do
Re: Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
#15Re: Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
#16Re: Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
#17Django Literally just create a django project, code your data models, and register them with django admin. Users and login included
Re: Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
#18Other people just use spreadsheets for this type of stuff, depending on the application.
Re: Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
#19Depending on what you're trying to do, Retool ( https://retool.com/ ) can get you up and running very quickly. It's great for quick and dirty internal tools, but maybe not that suitable if you are going to build something large and complex that you need a lot of custom functionality for. In that case, I recommend Flask [1] + SQLite [2] (you can swap out SQLite for Postgres if you start hitting scaling issues). Flask…
Re: Ask HN: In 2022 how do you develop a simple CRUD app if you have few time?
#20Wordpress with custom post types is what I'd reach for. You can install WP on any number of shared hosts for ~$10/month. Then install custom post types and you can set up attributes for each entity type. The UI is all taken care of. You can even use it to drive an API. These instructions from me are a few years old but cover the basics: https://www.mooreds.com/wordpress/archives/2971