Live data from Hacker News

Ask HN: Experiences with low-code systems?

news.ycombinator.com

71–76 of 76 posts

Re: Ask HN: Experiences with low-code systems?

#71

Disclaimer: I'm the creator of Appsmith. The primary reason for creating Appsmith was because, as a backend engineer, I didn't enjoy mucking around with HTML/CSS just to build admin panels. Hence, we created a way to build such apps really quickly. Appsmith also has a deep integration with Git. This allows you to create feature branches, raise pull requests and have different branches for your staging and prod enviro…

Any planned support for gRPC or OpenAPI?

Re: Ask HN: Experiences with low-code systems?

#72
Low-code/no-code is essentially a fine idea. It's the same idea as DSLs and libraries, with an attempt to bring it these ideas (usually by UX techniques and severly limiting the power of the system) to the technically simpler people.

The problem is that afaik nobody has yet implemented the grand idea well. They build the facade and the insides are rotten, haphazardly put together without a clear vision. It needs a deeply technical vision and, I imagine, a bit of computer science to get right.

It's a bit like what the cloud space was before AWS and Google came along.

Re: Ask HN: Experiences with low-code systems?

#73
Disclaimer: I'm the creator of Dashjoin (https://github.com/dashjoin/platform)

Implementing the features you mentioned:

Once you connect your SQL / NoSQL database, you're immediately able to view, query, search, and edit the data. Every record implicitly has a "homepage". On this page, you can add active elements to automate tasks via REST services. We do this using JSONata (jsonata.org) which is a super expressive and concise transformation and query language. You can find some samples in our demo application (https://github.com/dashjoin/dashjoin-demo).

The core philosophy is to get immediate results and refine from there, depending on your cost / benefit calculation.

SDLC:

I think this is a very important point! Even though you're working with low code, it is still a development project with testing, staging, and production, issues, tickets, etc. We allow you to manage the software development lifecycle using GIT. You can view a sample project here: https://github.com/dashjoin/dashjoin-demo. It contains of the DB connectivity information, custom page layouts, queries, and REST function adapters. A developer commits changes to the repository. The production can be configured to pull a certain QAed version.

Re: Ask HN: Experiences with low-code systems?

#74
I have been using DronaHQ (https://www.dronahq.com) to build apps for my clients. I really like the ability of designing frontends quickly using some greate UI components (my most commonly used one is their table grid) that work both as web apps and mobile apps. Simultaneously we can publish for all the platforms. It supports version control, version rollback as well as intigration with Git.

I have used DronaHQ to integrate and create apps on top of databases like MongoDB, MySQL, Postgres and a handful more and the power really shows in the platform's performance when it comes to looking up over 10000 rows of data (through smart optimization techniques ofcourse supported by the tool) which I am yet to find elsewhere.

I am definitely saving a lot of time and able to create some fairly complex tools such as a custom CRM, dynamic inspection forms, approval management apps.

Re: Ask HN: Experiences with low-code systems?

#75
I have been using DronaHQ (https://www.dronahq.com) to build apps for my clients. I really like the ability of designing frontends quickly using some greate UI components (my most commonly used one is their table grid) that work both as web apps and mobile apps. We can publish apps simultaneously on multpleplatforms. Also it supports version control, version rollback and intigration with git.

I have used DronaHQ to integrate and create apps on top of databases like MongoDB, MySQL, Postgres and a handful more and the power really shows in the platform's performance when it comes to looking up over 10000 rows of data (through smart optimization techniques ofcourse supported by the tool) which I am yet to find elsewhere.

I am definitely saving a lot of time and able to create some fairly complex tools such as a custom CRM, dynamic inspection forms, approval management apps.

Post reply on HN