Tag: frontend development
All the articles with the tag "frontend development".
-
Design Tokens Are a Contract Too
Design tokens are the API between design and development - and like every API, they need a contract. Here is the three-layer token architecture, why the semantic layer absorbs redesigns and dark mode for free, and the governance that stops your token set from quietly rotting.
-
Delete a Dependency - Native Browser APIs That Replaced Your Libraries
Open your package.json. Half of it is solving problems the browser now solves natively. Here is a practical tour of the packages you can delete in 2026 - modals, tooltips, scroll animations, deep clone, date formatting - the platform feature that replaces each, and why every deletion pays you back forever.
-
App-Feel Without the Framework - View Transitions and Speculation Rules
We used to reach for a heavy JavaScript framework just to make navigation feel smooth and instant. In 2026 the browser does both natively - View Transitions animate between pages, Speculation Rules prerender the next one. Here is how to get app-feel on a plain multi-page site, with a few lines and zero framework.
-
No TypeScript, On Purpose - Plain JavaScript with JSDoc in 2026
In 2026 the consensus is that plain JavaScript is legacy and TypeScript is the only professional choice. We write plain JS with JSDoc across every project - deliberately - and ship just fine. Here is how, the honest trade-offs, and when I would still reach for TypeScript.
-
DRY Where It Matters Most - Build Your Login, Auth, and Security Layers Once
Every project that re-implements login, session handling, or access control re-introduces the same vulnerabilities. Security is the one place where you must not repeat yourself. Here is how to build hardened, reusable auth components once - and reuse them everywhere.