The Developer's QuarterlyArticles Archive

All Published ArticlesLatest articles, 10 per page

A living archive of published articles available to readers.

The Developer's Quarterly · AI ToolingMarch 4, 2026

MCP Servers and Copilot:A Practical Way to Give Chat Real Tools

MCP gives Copilot a standard way to discover tools, resources, and prompts so chat can interact with real systems instead of guessing at them.

8 min readMCP · Copilot · VS Code · Automation
Read Article
The Developer's Quarterly · TypeScriptMarch 1, 2026

@typescript-eslint/no-namespace:Why It Exists and Why It Is Usually Right

The rule exists because namespaces are usually a worse default than ES modules, even though they still have a narrow place in legacy code and declaration files.

8 min readTypeScript · ESLint · Namespaces · Modules
Read Article
The Developer's Quarterly · JavaScriptFebruary 26, 2026

Object.defineProperty:What It Is and When It Actually Matters

Object.defineProperty is the descriptor-level API you reach for when a property needs to be read-only, hidden, computed, or otherwise more precise than a normal assignment.

8 min readJavaScript · Object properties · Descriptors · APIs
Read Article
The Developer's Quarterly · AccessibilityFebruary 23, 2026

a11y:How to Install the Core Accessibility Tools

Accessibility is a workflow you add to your stack: install static linting first, then rendered DOM checks, then Storybook review tools so problems surface early.

8 min readAccessibility · a11y · React · Testing · Storybook
Read Article
The Developer's Quarterly · React PerformanceFebruary 20, 2026

Understanding startTransition in React:Marking Non-Urgent Updates Without Blocking Input

startTransition lets React treat expensive updates as non-urgent so typing, clicking, and other direct interactions stay responsive while heavier work catches up.

8 min readReact · Concurrency · Performance · startTransition
Read Article
The Developer's Quarterly · JavaScript ToolingFebruary 17, 2026

SWC vs esbuild:Which Fast JavaScript Tool Fits Your Pipeline?

Both tools are extremely fast, but they optimize for different layers of the toolchain: esbuild is usually the better standalone bundler, while SWC is usually the better compiler inside frameworks and higher-level build systems.

8 min readJavaScript Tooling · Build Systems · SWC · esbuild
Read Article
The Developer's Quarterly · Next.js FoundationsFebruary 14, 2026

Next.js Environment Files:How Loading, Priority, and Browser Exposure Actually Work

Next.js environment files follow a specific naming scheme, load order, and browser exposure rule, and understanding those details prevents many staging and production configuration bugs.

10 min readNext.js · Environment Variables · Configuration · Deployment
Read Article
The Developer's Quarterly · Web SecurityFebruary 11, 2026

HttpOnly Cookies:How They Fit into React and Next.js Auth Flows

HttpOnly cookies keep session secrets out of client-side JavaScript, which makes them a strong default for React and Next.js apps that rely on server-validated authentication.

10 min readSecurity · Next.js · React · Cookies · Authentication
Read Article
The Developer's Quarterly · Git WorkflowFebruary 8, 2026

Conventional Commits:A Lightweight Community Standard

Conventional Commits adds a small amount of structure to commit messages so humans can scan history faster and tools can automate changelogs, semantic versioning, and release workflows more reliably.

9 min readGit · Conventional Commits · Semantic Versioning · Release Automation
Read Article
The Developer's Quarterly · React Data FetchingFebruary 5, 2026

SWR vs React Query vs RTK Query:Choosing the Right Data Fetching Library for Your React App

SWR, React Query, and RTK Query all solve server-state problems, but the right choice depends less on features than on app complexity, mutation patterns, and whether Redux already anchors the architecture.

9 min readReact · SWR · React Query · RTK Query · Data Fetching
Read Article