Ask HN: What are your favorite low-coding apps / tools as a developer?
161–170 of 290 posts
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#162Hasura by far, lets you point-and-click build your database and table relationships with a web dashboard and autogenerates a full GraphQL CRUD API with permissions you can configure and JWT/webhook auth baked-in. https://hasura.io/ I've been able to build in a weekend no-code what would've taken my team weeks or months to build by hand, even with something as productive as Rails. It automates the boring stuff and you…
> Hasura Pro Pricing: Talk to Us I'm always scared to call when I hear this.
The idea is for most users to be on the free / open tier and then monetize off of enterprise users with specific demands and less cash sensitivity.
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#163Earlier quoted context omitted.
That's one of the most common misconceptions about Hasura. While it CAN expose an existing Postgres database, where it really shines (in my opinion) is when you're starting a brand new product. Because you can create your whole database and all the relationships, foreign-keys, triggers, permissions, etc through the web console UI incredibly rapidly. And yeah, it takes care of all CRUD and provides an aggregation/stat…
I really want to like Hasura, but very quickly you'll run into limitations of its permission system. Especially when dealing with logic across relationships. If only Hasura supported some king of Prolog / Datalog instead of their ad-hoc JSON language, then you'd be able to write nearly any possible use cases. Until then, I'll stick to building and maintaining my own backends... manually :(
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#164Hasura by far, lets you point-and-click build your database and table relationships with a web dashboard and autogenerates a full GraphQL CRUD API with permissions you can configure and JWT/webhook auth baked-in. https://hasura.io/ I've been able to build in a weekend no-code what would've taken my team weeks or months to build by hand, even with something as productive as Rails. It automates the boring stuff and you…
This is similar to what we're doing! Hasura + AutoCRUD framework + Metabase is a great stack for putting together a solid business application in no time. Combine Hasura (automatic GraphQL on top of PostgreSQL) with React Admin (low code CRUD apps similar to Forest) and you can build an entire back office admin suite or form app (API endpoints and admin front end) in a matter of hours. This adaptor connects react-adm…
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#165Earlier quoted context omitted.
This is similar to what we're doing! Hasura + AutoCRUD framework + Metabase is a great stack for putting together a solid business application in no time. Combine Hasura (automatic GraphQL on top of PostgreSQL) with React Admin (low code CRUD apps similar to Forest) and you can build an entire back office admin suite or form app (API endpoints and admin front end) in a matter of hours. This adaptor connects react-adm…
I've taken your stack one step further, with a completely dockerised solution that uses Firebase as an authentication solution (authentication is missing from the current low-code example). It can be run locally or on a cloud provider that runs containers (e.g. GCP Compute Create-With-Container). See here: https://github.com/dvasdekis/react-admin-hasura-firebase/ Thanks to gavinray also for the help with this!
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#166Being a part of the Dark beta ( https://darklang.com ) has been incredible. It makes setting up a simple backend with persistent storage a breeze.
Sure darklang improves productivity. But the cost of that productivity is absolute vendor lock-in... Darklang is a proprietary framework where the ENTIRE stack... even the IDE! is controlled by a specific company. Just be weary of this, when depending on it.
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#167We use https://retool.com
Honorable mention to my own startup https://flatfile.io if you're trying to skip past the data import problem.
Re: Ask HN: What are your favorite low-coding apps / tools as a developer?
#168The Serverless Framework have been an amazing low code experience for me.
Building REST APIs is crazy simple... 90% of it is writing config files. Another plus is that you really don't need to use web frameworks - you can just write your business logic.
anyway thats my $0.02