coding3 min read

Why Write Code If LLMs Can Do It? Exploring Web App Experiments

Discover the importance of manual coding in an era dominated by LLMs. Join a web app experiment that highlights key insights for developers.

Kevin Liu profile picture

Kevin Liu

November 2, 2025

Why Write Code If LLMs Can Do It? Exploring Web App Experiments

Can LLMs Replace Manual Coding in Web App Development?

In the tech world, large language models (LLMs) like OpenAI's ChatGPT and Google's Bard are changing software development. These tools can generate code, troubleshoot, and even build apps with less effort. This leads to a big question: Why bother with manual coding when LLMs can do it? This blog dives into the pros and cons of LLMs in coding, the value of manual programming, and an experiment comparing both methods.

How Are LLMs Changing Software Development?

LLMs are becoming integral to software development, offering:

  • Quick generation of boilerplate code for web apps
  • Instant troubleshooting guidance
  • A fast track for beginners to grasp programming concepts

But, LLMs aren't perfect. Overreliance on them might weaken our grasp on programming basics, best practices, and our ability to solve problems.

What Limits LLMs in Coding?

LLMs have their flaws:

  1. Context Awareness: They often lose track in lengthy discussions or complex projects.
  2. Creativity: LLMs might not match the creative problem-solving of human developers.
  3. Code Quality: The code they generate can be hit or miss, potentially leading to security and performance issues.

The Case for Manual Coding

Coding by hand is crucial for deep learning and skill enhancement. Here's why it's still relevant:

  • Problem-Solving Skills: It teaches developers to tackle and solve challenges efficiently.
  • Code Optimization: Developers can craft optimized code that meets specific project requirements.
  • Collaboration: Knowing the ins and outs of your code improves team collaboration and communication.

Web App Experiment: Manual vs. LLM Coding

I tested the effectiveness of manual coding against LLM-generated code by building a simple task manager app using Next.js and React.

Experiment Overview

  • Framework: Next.js (for server-side rendering)
  • UI Library: React (for UI development)
  • LLM Tool: ChatGPT (for code snippets)

Experiment Steps

  1. Define Requirements: I listed the essential features for the task manager.
  2. LLM Code Generation: ChatGPT produced components and API routes.
  3. Manual Coding: I wrote the same components and routes, focusing on best practices.

Findings

  • Time Efficiency: LLMs were faster, generating code in under 10 minutes, while manual coding took about 30 minutes.
  • Code Quality: Manual coding resulted in optimized, readable code with better error handling.
  • Debugging: Fixing issues in LLM-generated code required significant manual effort.

Insights from the Experiment

The experiment teaches us:

  • LLMs can speed up coding but might introduce errors or inefficiencies.
  • Manual coding ensures quality and deep understanding, crucial for success.
  • Combining LLMs for routine tasks with manual coding for complex projects could be the best strategy.

Conclusion: Finding the Right Mix of LLMs and Manual Coding

As LLMs evolve, they'll play a bigger role in software development. Yet, manual coding's benefits—creativity, problem-solving, and code quality—are irreplaceable. Balancing LLM use with strong coding practices lets developers excel and adapt to the future of tech.

In essence, while LLMs offer powerful development tools, they should enhance, not replace, the craft of manual coding. Understanding both approaches allows developers to succeed in a rapidly evolving field.

Related Articles