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 22, 2026

GitHub Copilot Chat:Participants, Slash Commands, and Variables

Copilot Chat is easier to steer when you separate who answers, what task is being requested, and which files or selections should be used as context.

6 min readGitHub Copilot · VS Code · Chat · Developer Tools
Read Article
The Developer's Quarterly · Developer ToolsMarch 19, 2026

GitHub CLI:Why the Terminal Is Often the Fastest Way to Work With GitHub

GitHub CLI moves authentication, repo cloning, pull requests, and issue triage into the terminal, which reduces context switching and makes GitHub tasks easier to script.

8 min readGitHub · CLI · Developer Tools · Automation
Read Article
The Developer's Quarterly · TypeScriptMarch 16, 2026

TypeScript vs TypeScript + React Compiler in Vite:What Changes and When It Is Worth It

TypeScript protects correctness, while React Compiler reduces some manual memoization work in a Vite app, so the real tradeoff is whether the extra compiler layer is worth the rollout cost.

8 min readTypeScript · React Compiler · Vite · Performance
Read Article
The Developer's Quarterly · Next.js FoundationsMarch 13, 2026

Images in /public vs Importing Them:What Actually Changes in Next.js

Images in public behave like stable static assets, while imported images become build-managed module assets with automatic metadata and better ergonomics in component code.

8 min readNext.js · Images · Performance · Asset Management
Read Article
The Developer's Quarterly · Testing ToolsMarch 10, 2026

jest.isolateModules:Why It Exists and When It Matters

jest.isolateModules gives each callback its own module registry, which is useful when a test needs a clean import graph without resetting the whole suite.

8 min readJest · Testing · Modules · React
Read Article
The Developer's Quarterly · Testing ToolsMarch 7, 2026

jsdom:Usage in React Development

jsdom gives React tests a browser-like DOM inside Node, which makes it useful for component testing, event flows, and HTML inspection without opening a real browser.

8 min readReact · Testing · jsdom · DOM
Read Article
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