Live data from Hacker News

Ask HN: Easiest way to build a CRUD app?

news.ycombinator.com

21–30 of 239 posts

Re: Ask HN: Easiest way to build a CRUD app?

#21
I would consider Django and just using its Admin framework for building your UI, you can achieve so much very quickly with almost no code.

I believe it’s a brilliant tool for building internal CRUD type db apps.

Knowing how to use the admin framework well is basically a developer super power.

You won’t need any external libraries, it has brilliant docs and important tools like database migrations are built in.

Re: Ask HN: Easiest way to build a CRUD app?

#22
"Easiest way to build a CRUD app".

Using the CRUD-app-building framework in which you are competent.

Beyond toy apps there are no shortcuts without that competence but there are plenty of prospective frameworks to develop it in, as evidenced by the other comments.

Re: Ask HN: Easiest way to build a CRUD app?

#25

"Easiest way to build a CRUD app". Using the CRUD-app-building framework in which you are competent . Beyond toy apps there are no shortcuts without that competence but there are plenty of prospective frameworks to develop it in, as evidenced by the other comments.

This is the right answer. There are use cases which are served well by simple builders - temporary or event-related apps, short-lived internal tools, etc., but if there is the faintest possibility that this will require maintenance and extension - and "can last for a long time" points to this - you need something robust that you can reliably tinker with.

Re: Ask HN: Easiest way to build a CRUD app?

#26
For non enterprise graded CRUD apps, I usually go the PHP way, it's not sexy but it's cheap to run both in term of server cost and brain space to worry about what could go wrong, doesn't require constant maintenance and is likely to outlive the majority of what is considered sexy today.

Re: Ask HN: Easiest way to build a CRUD app?

#27
>Is it a stupid question?

It is not a stupid question at all. A problem I thought would have been solved by now or very closed to solving it. But we are not even half way there. Especially the self hosted API and services part.

Basically you want to bring Native App development model to the web. Although I think WebObject in the old days were quite close?

The current recommendation are Laravel, Rails and Django.

Re: Ask HN: Easiest way to build a CRUD app?

#29
What do you want to achieve or build with it? I'd suggest Rails as it's pretty easy to get something up and running but that depends on what tech you are familiar with. It's boring, has a lot of resources online and doesn't change much so maybe a good choice.

Re: Ask HN: Easiest way to build a CRUD app?

#30
post #6

Can you make it out of a google form and a google sheet?

No, because then I would be relying on an external service from Google.

You will always rely on some external services.

Either AWS for hosting or if you go the crazy root your ISP to bring internet to your own server.

Relying on Google sheet and Google form seems like a reasonable safe bet.

Then of course, the simple stack may not be enough, but if it is enough, I am not aware of anything simpler.

Post reply on HN