Live data from Hacker News

Ask HN: Best low-/no-code solution for simple web-based database frontends

news.ycombinator.com

61–70 of 146 posts

Re: Ask HN: Best low-/no-code solution for simple web-based database frontends

#61

I’ve tried Retool in the past. Really enjoyed it. https://retool.com

Is Retool usable enough for non-technical people? "It's easy, just wire it up to your REST service" may be scary for non-technical people. Maybe the persona isn't well-defined enough. They're somewhat technical, but don't code.

Spending over a decade programming makes it extremely difficult to reason about the the precise level of "okay, I can do this" from a semi-technical perspective.

Re: Ask HN: Best low-/no-code solution for simple web-based database frontends

#62

Why not start out by using the Django Admin features? That allows you to start with next to no code, but you can easily add a little business logic anywhere you need it eventually, and it provides a way to long term transition to a true application if the need arises.

I find answers in this format annoying. Why not? Maybe he's never heard of it. Great answer, but let's not assume he's considered it and decided not to.

I read as just a friendly suggestion that it’s something the OP might want to take a look at (^_^)

Re: Ask HN: Best low-/no-code solution for simple web-based database frontends

#63
post #42

Why not start out by using the Django Admin features? That allows you to start with next to no code, but you can easily add a little business logic anywhere you need it eventually, and it provides a way to long term transition to a true application if the need arises.

This is definitely the correct approach! This will take a few minutes to implement and be significantly more stable and full-featured than any low/no-code solution.

Interesting! It would be awesome if anyone would want to expand on this advice (^_^)

How does one get started with Django Admin?

Would this tutorial be a good start? https://first-django-admin.readthedocs.io/

Re: Ask HN: Best low-/no-code solution for simple web-based database frontends

#64
Here are a few that are in the ball park, but mostly lacking the form bit (you have to make your own though most of these offer a way to have a append-only user for the form to act as):

- Strapi (https://github.com/strapi/strapi)

- Directus (https://github.com/directus/directus)

- React Admin (https://github.com/marmelab/react-admin)

- Netlify CMS - a bit off the mark but maybe worth considering (https://github.com/netlify/netlify-cms)

Re: Ask HN: Best low-/no-code solution for simple web-based database frontends

#65

Why not start out by using the Django Admin features? That allows you to start with next to no code, but you can easily add a little business logic anywhere you need it eventually, and it provides a way to long term transition to a true application if the need arises.

I'm pushing ~$120 million this year through that exact model. Use what works. Throwaway for obvious reasons.

Well done! What's the margin?

Re: Ask HN: Best low-/no-code solution for simple web-based database frontends

#66

Why not start out by using the Django Admin features? That allows you to start with next to no code, but you can easily add a little business logic anywhere you need it eventually, and it provides a way to long term transition to a true application if the need arises.

I find answers in this format annoying. Why not? Maybe he's never heard of it. Great answer, but let's not assume he's considered it and decided not to.

I had written it this way because the OP had specifically ruled out using Django. Point taken though.

Re: Ask HN: Best low-/no-code solution for simple web-based database frontends

#68
There's a pretty vibrant community of CRUD RAD tooling for .Net and SQL Server. A few years back I had evaluated several for a customer. The only one that I remember off the top of my head is CodeOnTime (I've no affiliation and am not currently a customer).

My general rule of thumb for such tools is that the easy things should be easy and the hard things should be possible.

Re: Ask HN: Best low-/no-code solution for simple web-based database frontends

#70

I’ve tried Retool in the past. Really enjoyed it. https://retool.com

Is Retool usable enough for non-technical people? "It's easy, just wire it up to your REST service" may be scary for non-technical people. Maybe the persona isn't well-defined enough. They're somewhat technical, but don't code. Spending over a decade programming makes it extremely difficult to reason about the the precise level of "okay, I can do this" from a semi-technical perspective.

I think that is a fair concern. I would say that it does take some learning/training. If you're going to hook it up to a SQL DB or a REST interface then you have to know what a GET request is or the connection credentials.

However, once the data is wired up, getting it wired to the various components was pretty straight forward.

Post reply on HN