TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Is “No Code” the future of web/app dev?

47 pointsby zaksinghalmost 5 years ago
It&#x27;s been &quot;the future&quot; for 40-ish years now, with dozens (if not hundreds) of failed attempts. At some point, one has to wonder: are we there yet? If not, why aren&#x27;t we?<p>To me it seems logical that designers should one day be building frontends through visual interfaces that are almost as malleable as tools like Sketch. It seems to me that many features from design programs (like Framer) seek to make design closer to development, and we&#x27;ve even seen a Git for design workflows. So why hasn&#x27;t it happened yet, and will it ever?

16 comments

gitgudalmost 5 years ago
No-code means programming without <i>text</i>, it doesn&#x27;t remove complexity, only abstracts it away, covering it with some visual programming GUI.<p>Here&#x27;s some problems that I can think of with visual programming:<p>- Version control: Not only the logic of the system, but the <i>shape</i> of the visual representation needs to be tracked... along with a lot of other metadata.<p>- Debugging: Visual programs need yet another step of compilation and translation, to go from visual to text to machine code. This makes debugging much harder to implement, if it&#x27;s even an option.<p>- Architecture: Visual programming environments are usually optimised for a certain way of doing things. This effectively cements the architecture of your system.<p>- Refactoring: Without text, you&#x27;re going to have a hard time renaming variables and moving things around, basically it&#x27;s back to the mouse... you could go through the text-source files and find&#x2F;replace variable names, but that defeats the purpose of the visual abstraction.<p>- Verbosity: Displaying the programs visually - usually a graph of nodes - is extremely verbose and cumbersome. Trying to navigate a large graph&#x2F;tree and work out what&#x27;s going on is difficult. Text on the other hand scales much better for large programs.<p>- Integrations: Integrating the system with obscure libraries is often difficult or not possible at all. Using a library in node or python is simple, in a visual environment you&#x27;re generally relying on the pre-built components&#x2F;nodes...<p>- Vendor-lockin: Visual programming languages are generally all propitiatory making them extremely hard to migrate off.<p>- High Complexity: A text-based language simply needs a compiler to run, as text-editors are interchangeable. A visual language needs a compiler and a visual editor, which makes development of the system much more difficult and complex.<p>Basically, I think text-based programming is here to stay. Text is simple, flexible, efficient, elegant and most importantly it&#x27;s one of the most concise ways to convey logic of a system.
评论 #23687437 未加载
评论 #23703678 未加载
评论 #23687431 未加载
评论 #23688731 未加载
kasey_junkalmost 5 years ago
Excel is likely the most used IDE of all time. We’ve been living in the no code business application future for 40 years.<p>I can stand up a cluster of web servers that automatically scale to effectively infinite demand with a few clicks on the internet.<p>I can design a front end without paying attention to code and have been able to for 20 years.<p>No code is like AI. The goal posts keep moving. So you need to be more specific when you ask if it’s what’s next.
评论 #23687586 未加载
评论 #23695667 未加载
IdiocyInActionalmost 5 years ago
In my mind, &quot;no code&quot; doesn&#x27;t really exist. All that exists are different programming languages, some of which are visual and require less learning. You could, principally, design a no-code web app IDE that could build whatever website you like; but that doesn&#x27;t remove the complexity of building it, it&#x27;s simply expressed in a different way. Seeing programming as some nuisance is, IMHO, the wrong mindset; it&#x27;s the very process that transforms requirements and expectations into a product. True &quot;no-code&quot; would require human-level (or at least very advanced) AI systems. Of course, for very low-complexity systems, you can define a graphical programming language that abstracts away most of the technical details (e.g. Dreamweaver, stuff like Wix), but even that is a very primitive form of programming. Excel is also a form of programming.<p>Also, I don&#x27;t really get the hostility for code as a textual format. Text has a number of advantages that just haven&#x27;t been replicated; it&#x27;s a very compact format, reasonably standardized, can easily be refactored and can be universally edited. Also, I don&#x27;t think it hinders learning about programming; learning the programming language <i>syntax</i> is the easiest part, IME. It took me about 4 weeks when I was 14 to learn Java. Learning how to solve problems with the language is a whole different ballgame and that wouldn&#x27;t be solved by having a graphical programming language. There are cases where it is advantageous (e.g. Excel), but for the majority of use-cases, I think you&#x27;ll find it hard to get more productivity with a graphical format.
godotalmost 5 years ago
I think one of my favorite HN comment from this past year [1] addresses this a bit:<p>&gt; Software has really interesting economics where as the cost&#x2F;feature decreases by a factor, say 1x, then the set of features that can be profitably worked on expands by like 10x, so paradoxically, as cost&#x2F;feature decreases, it makes sense to hire more engineers and expand R&amp;D budgets.<p>&quot;No code&quot; is part of this, IMO. If a &quot;no code&quot; tool made certain things easier (e.g. building a landing site with some functionality), then the business starts to see the next set of features that can&#x2F;should now be built because that previous problem was solved, that can&#x27;t be done with a &quot;no code&quot; solution and needs some R&amp;D effort to build out. The cycle continues as &quot;no code&quot; tools get more advanced to cover those use cases, and then more new business use cases will come out as a result of having those new tools in place.<p>1: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=23298080" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=23298080</a>
qppoalmost 5 years ago
Yes and no. Right now we&#x27;re in a period of decline of code and want everything to be configurable and enumerable by control panels and slick GUIs, after a long period of needless complexity and broken ecosystems only navigable by domain experts. Eventually, we&#x27;ll realize that our declarative configs behind our control panels and slick UIs fail at enumerating the complexity of particular problem domains and we&#x27;ll write scripts to glue together those systems in better ways, and then someone will make the suggestion that hey: we can do this with code!<p>And then we write the code and our ecosystem gets broken and we build needless complexity, and we realize that 90% of the time a simple config file will work. And then we replace the config with a control panel. And then we need more options, so that becomes a slick GUI.<p>And so on, and so forth.<p>IMO we have been optimizing the design of digital experiences for professional&#x2F;commercial applications for 30 years and we have about 30 more years before we get it &quot;right&quot; and that solution will be (more or less) HTML templates. A declarative low level language that expresses everything possible, surrounded by multiparadigm languages that can compose it, and user interfaces that compile visual representations into those contextually. There&#x27;s no one best approach.
PeterStueralmost 5 years ago
&#x27;no code&#x27; usually does not just refer to a different type of editor, like a visual widget composer. It usually implies the creation and specification an now be done by a person that does not need coding skills.<p>The latter is not impossible, but there is a tradeoff. As computers have endless capabilities, a hue number of design choices need to be specified in order to select&#x2F;create the specific outcome desired.<p>This required information need can for the end programmer&#x2F;designer be reduced by shrinking the potential design space through premade implicit descisions. Creating a &#x27;stopwatch&#x27; app from scratch starting with a blinking cursor in an empty text file will require a lot more specification than creating it in a dedicated graphical stopwatch designer where all that is still needed is specifying the color of the start&#x2F;stop button, but the former leaves you endless more possibilities than the latter.<p>Getting the above tradeoff right usually runs into the 80&#x2F;20 situation. You can live with 80% of the choices made, they cover 80% of your needs, but for the rest...<p>And now your non-coder runs into a problem. Not only is the skillet promise now void, the higher level abstraction made in the &#x27;no code&#x27; model is not crisply delineated, so the coder brought in to finish the job now has to understand the complexities of the code underlying the abstraction where the design tradeoffs were chosen not in favor of this under the hood meddling.<p>A similar problem occurs when a bug or unforeseen configuration breaks the no code veil. This is referred to as the &#x27;leaky abstraction&#x27; problem.<p>In the end usually you still need a coder that understands the lower level. And specifitions for highly open systems are more efficient conveyed and maintained through textual &#x27;code&#x27; than through other types of graphical editors.
m0theralmost 5 years ago
The web is, at it&#x27;s heart, a distributed document system with a layer of hacks on top for building applications.<p>You can create pure documents for the web without any code. Documents are, by nature, easily expressed declaratively; and it&#x27;s not impossible to build an intuitive interface to express declarative data visually (or hide the data aspect completely in the case of a WYSIWYG interface).<p>Modern web pages are, in my mind, a sort of document&#x2F;application hybrid (with few exceptions as of 2020). We have yet to find a better way to express an application than through textual code.<p>Procedural code is branching and time sequenced; how do you express that in a meaningful way visually? For some reason our imaginations find it easy to understand that the side effects of every line before this one are still around, and we&#x27;re pretty good at picking up the concept of branching and jumping around the instructions; but I believe that&#x27;s because the code is essentially a sequenced list of commands (and our brains are good with sequenced lists).<p>The attempts I&#x27;ve seen at visual programming remove common programming capabilities to fit more neatly within their visual medium; as long as that is the case, I don&#x27;t see visual programming breaking out of being used strictly in DSLs (domain specific languages), which are often inherently limited.<p>I don&#x27;t think a no code future is likely, as long as custom software is in demand; however I can see a future where fewer technician type roles require code. Of course that would require someone to spend a lot of money building a standard visual vocabulary of related tasks, excellent ergonomic interfaces, and extensible GUI systems; the type of things the FOSS world hasn&#x27;t built much of a community for as far as I am aware.
samanganalmost 5 years ago
I think the general problem with &quot;No code&quot; as you describe it is that if you want to only offer the lego building blocks then you can&#x27;t support corner cases. If you want to eliminate all of the corner cases you often times end up creating something as complicated as code but without the nice tooling or information density.
评论 #23688990 未加载
Yes2020almost 5 years ago
My experience with &quot; no code&quot; reinforces the issues raised in ex other comments, with a little emphasis to add:<p>If you never learned your times tables, then used a calculator, imbedded calculation loops are tricky to troubleshoot .<p>&quot; no code&quot; layers this more deeply, creating a very large number of programming code lines, function calls and subroutines on interpreted code that runs slow anyway. It can be difficult to untangle when things just don&#x27;t work right.<p>Interpreted code always runs slower that code compiled into machine code. Maybe adding in AI and machine learning will eventually be able to take this first-rev , &quot; no code &quot; prototyping and optimize it into an efficient, effective, fast system that is bullet proof, and intellectually protected.
评论 #23687414 未加载
kevsimalmost 5 years ago
I think no&#x2F;low code stuff has its place. For example, our product guy can build our landing page using Webflow and doesn&#x27;t need to bug the devs, who can focus on actually coding our product.<p>Would we consider a no code product to build the fundamental pieces or our actual product? Likely not based on the tools I&#x27;ve tried over the years.<p>Wish it wasn&#x27;t so though. The disconnect&#x2F;handover from design to implementation is still a bottleneck. Tools like Figma offer ways to export CSS, etc. but that&#x27;s not really the main pain. The real time sync is in coordination, iteration, time spent on designs that change out from underneath you, etc.
doliveiraalmost 5 years ago
As a follow-up question, I vaguely remember that Dreamweaver was pretty popular to design websites once. What happened that caused its decline?
评论 #23691329 未加载
评论 #23686277 未加载
thepoetalmost 5 years ago
Pure no code in the current form may never catch on. I wrote something on No code this Sunday <a href="https:&#x2F;&#x2F;technotes.substack.com&#x2F;p&#x2F;no-code-the-revolution-that-wasnt" rel="nofollow">https:&#x2F;&#x2F;technotes.substack.com&#x2F;p&#x2F;no-code-the-revolution-that...</a>
duxupalmost 5 years ago
If the technology for interactive web front ends were to somehow slow or stop changing rapidly... maybe that could happen.<p>But it hasn&#x27;t and I&#x27;m not sure we&#x27;re there yet.<p>And no code I don&#x27;t think has taken over the desktop world yet has it? That&#x27;s a hell of a lot more mature area front end wise.
评论 #23687382 未加载
catsarebetteralmost 5 years ago
What are the common users and use cases of no code? I feel like it&#x27;s well worth the investment to spend a year or 2 learning serious programming or just hiring a team if someone wants to get into the software space so kind of confused by the movement
评论 #23687366 未加载
qwerty456127almost 5 years ago
The upcoming generation can&#x27;t even type, they grow up using cellphones instead of PCs. Of course it is.
verdvermalmost 5 years ago
I&#x27;m working on a &quot;low&quot; code platform for developers (use your IDE, write in the generated code, iterate &#x2F; redesign &#x2F; regen )<p>Docs are a bit MIA, so I haven&#x27;t pushed it much yet, but you can check out the lib&#x2F;gen dir and the Cue files for examples. I&#x27;m very curious to hear what more developers with strong opinions about low code think.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;hofstadter-io&#x2F;hof" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;hofstadter-io&#x2F;hof</a>