DEV Community

Cover image for Web Development Best Practices That Actually Matter in Production
Jasmine Dueñas
Jasmine Dueñas

Posted on

Web Development Best Practices That Actually Matter in Production

There's no shortage of "best practices" lists online, but most of them read like documentation summaries copied from the same three sources. This one comes from real projects: client sites that went live, broke, got fixed, and eventually scaled.

I'm a full-stack engineer based in Cebu. I've worked on everything from Laravel + React business platforms to mobile-adjacent web apps. The practices below are the ones we actually enforce on every project, not just the ones that sound good in a sprint planning meeting.


Structure Your Project Before You Write a Single Line

The biggest source of technical debt I've seen isn't bad code. It's unplanned code. Developers who jump straight into features without agreeing on folder structure, naming conventions, or data flow end up with inconsistency that compounds every sprint.

Before kickoff, lock in: folder structure (by feature, not by type), naming conventions, state management approach, and API contract. For React, a feature-based structure ages better:

src/
  features/
    auth/
      components/
      hooks/
      authSlice.ts
  shared/
    components/
    utils/
Enter fullscreen mode Exit fullscreen mode

Co-located code onboards faster and breaks less when the team grows.


Keep Your Code Readable and Maintainable

Write for the next developer, and not just the compiler. Code that works is the floor. I've inherited codebases where everything ran fine but no one could safely touch anything: variable names like x and tempFinal, functions 100 lines long doing five different things, zero comments explaining why anything was built the way it was.

Three habits that compound over time: apply DRY (duplicated logic means duplicated bugs), comment the why not the what, and keep functions short and focused.

// Bad: one function doing everything
function processFormData(data) {
  // validate, transform, submit, handle errors — all 80 lines of it
}

// Better: single responsibility per function
function validateInput(data) { ... }
function transformPayload(data) { ... }
function submitForm(payload) { ... }
Enter fullscreen mode Exit fullscreen mode

In React projects specifically, this maps directly to component design. A component that fetches data, transforms it, and renders UI is three jobs in one. Split them. Your future self will thank you when a requirement changes.


Hit Your Core Web Vitals Targets

Google uses Core Web Vitals as ranking signals. More importantly, they correlate directly with whether users stay or leave. The targets:

  • LCP (Largest Contentful Paint): under 2.5 seconds. Usually your hero image or main above-the-fold block.
  • INP (Interaction to Next Paint): under 200ms. Replaced FID. Measures how responsive the page feels to input.
  • CLS (Cumulative Layout Shift): under 0.1. Set explicit dimensions on images and embeds so the layout doesn't jump as assets load.

What actually moves these numbers:

Lazy load non-critical assets. Native loading="lazy" on below-the-fold images. Code-split routes in your JS bundle.

const Dashboard = React.lazy(() => import('./features/dashboard/Dashboard'));
Enter fullscreen mode Exit fullscreen mode
<img src="screenshot.webp" loading="lazy" width="800" height="450" alt="Dashboard view" />
Enter fullscreen mode Exit fullscreen mode

Serve images in WebP or AVIF. A well-compressed WebP is typically 25-35% smaller than an equivalent JPEG with no visible quality loss.

Compress text assets. Enable Brotli on your server. It compresses JS and CSS 15-20% better than Gzip. If your host doesn't support Brotli, Gzip is non-negotiable.

Use a CDN. For Philippine-based projects, CDNs with Asia-Pacific edge nodes make a measurable difference. Cloudflare's free tier covers the basics.

Fix N+1 queries. A slow API tanks INP just as much as a heavy JS bundle. In Laravel:

// N+1: one query per user
$users = User::all(); // then loops hitting orders

// Fixed: two queries total
$users = User::with('orders')->get();
Enter fullscreen mode Exit fullscreen mode

Security Is Not Optional on Client Work

When you're building for a business, their user data is your responsibility during the build. Non-negotiables:

Sanitize all inputs. Every field, every endpoint. XSS and SQL injection are still the most common vulnerabilities in production apps and both are entirely preventable.

Use parameterized queries. Never concatenate user input into a SQL string.

Configure a Content Security Policy. A CSP header restricts which scripts and resources can execute on your page. One of the most effective XSS mitigations available:

Content-Security-Policy: default-src 'self'; script-src 'self'; object-src 'none';
Enter fullscreen mode Exit fullscreen mode

Keep dependencies updated. Outdated packages are the most overlooked attack surface. Run npm audit or composer audit regularly. Critical vulnerabilities are bugs, not backlog items.

Set CORS correctly. Wildcard * origins on a production API is a hole, not a convenience.

Store secrets in environment variables. If a credential is in your repo, assume it's compromised.

HTTPS everywhere. Let's Encrypt is free. There is no valid reason for HTTP on a production site.

I run a quick OWASP Top 10 check before every client handoff. Two hours. Has caught real issues more than once.


Accessibility Is a Technical Requirement, Not a Nice-to-Have

This is the section most "best practices" articles skip. Accessibility affects real users and in many markets it's a legal requirement. From a pure SEO angle: screen readers and Google's crawler parse your markup the same way. Semantic, accessible HTML directly improves indexability.

Use semantic HTML. <main>, <nav>, <article>, <header>, <footer> carry meaning. A <div> soup does not.

<!-- Avoid -->
<div class="nav">...</div>
<div class="content">...</div>

<!-- Prefer -->
<nav aria-label="Main navigation">...</nav>
<main>...</main>
Enter fullscreen mode Exit fullscreen mode

Support keyboard navigation. Every interactive element should be reachable via Tab and operable via Enter. Add visible :focus styles. Removing them because they look ugly locks out keyboard-only users entirely.

Check color contrast. WCAG 2.1 AA requires 4.5:1 for normal text. Low contrast is the most common accessibility failure on business sites.

Write meaningful alt text. Not alt="image". Describe what the image shows. For purely decorative images, use alt="" so screen readers skip them.

Spend 30 minutes with NVDA (free, Windows) or VoiceOver (built-in on macOS). Manual testing catches what automated tools miss.


Build for Mobile First, Not Mobile After

Over 70% of web traffic in the Philippines comes from mobile devices. If you're designing and coding desktop-first, you're retrofitting at the end of every sprint, and it shows.

Mobile-first CSS starts at the smallest breakpoint and adds complexity upward:

/* Base: mobile */
.card {
  padding: 1rem;
  flex-direction: column;
}

/* Tablet and up */
@media (min-width: 768px) {
  .card {
    padding: 2rem;
    flex-direction: row;
  }
}
Enter fullscreen mode Exit fullscreen mode

It's a discipline shift, not a major refactor. Teams that build mobile-first consistently ship fewer regressions on small screens.


Automate What Doesn't Need Human Eyes

Manual deployments are a liability. Steps get skipped, run out of order, or executed on the wrong branch.

Minimum viable CI/CD: lint on every push, run automated tests on PRs, use environment-specific configs for dev/staging/production, and include npm audit in the pipeline so dependency vulnerabilities don't slip through. GitHub Actions is free for public repos. There's no good reason to skip this.


Document Before You Hand Off

This gets skipped on almost every project. By delivery, everyone's tired and a README feels like overtime.

But a client who can't operate the system without the original developer is a support burden that follows you. Cover the basics: local setup, deployment steps, where secrets live, and what third-party services are integrated and why.

If you're working with a custom software development company in the Philippines, documentation quality is one of the fastest signals that they've shipped real projects before. A README that actually works is a professional differentiator. Most don't have one.


Consistency Beats Cleverness

The best codebase I've worked on wasn't the most technically impressive one. It was the most consistent one: same patterns everywhere, same naming, same error handling. Any developer could be productive in under an hour.

Clever code is satisfying to write and painful to maintain. Boring, consistent code ships faster, breaks less, and onboards better.

If you're evaluating a web development company in the Philippines for a long-term project, ask how they handle code reviews and whether they enforce conventions team-wide. That answer tells you more about maintainability than any tech stack claim.


FAQ

What's the most common code quality mistake on team projects?
No agreed conventions before writing starts. Folder structure, naming, state management approach, error handling patterns. If these aren't locked in at kickoff, every developer solves them differently. By sprint three you have five styles in one codebase and nobody wants to touch anything they didn't write.

What's the single fastest performance win?
Convert images to WebP or AVIF and set explicit dimensions. Usually the biggest LCP improvement and takes under an hour.

How do I start with accessibility if I've never done it before?
Run your page through the WAVE browser extension and fix everything it flags. Then navigate your own site using only a keyboard. That combination surfaces most critical issues.

What's a safe starting CSP?
Content-Security-Policy: default-src 'self'; script-src 'self'; object-src 'none'; Start strict and loosen only where your app explicitly needs external resources.

How often should dependencies be updated?
Monthly for minor updates. Security patches flagged as critical: same week. Stale dependencies are an underestimated attack surface.


These practices aren't individually groundbreaking. The value is in applying them as a system, consistently, from the start. The codebases that age well and the ones that become nightmares differ almost entirely on whether these fundamentals were treated as optional.

What does your team enforce that didn't make this list? Drop it in the comments.

Top comments (1)

Collapse
 
frank_signorini profile image
Frank

I'd love to see an example of how you prioritize and implement these best practices in a real-world production environment, especially when working with legacy codebases.