Tagged articles

frontend

3169 articles · Page 1 of 32
IT Services Circle
IT Services Circle
Jun 26, 2026 · Artificial Intelligence

10 Must‑Have Claude Code Skills to Supercharge Your Development Workflow

The article presents a curated list of ten Claude Code plugins—ranging from project planning and UI/UX enhancement to code review, token optimization, and custom skill creation—explaining their purpose, installation commands, concrete usage examples, and a recommended order to integrate them for a more efficient AI‑assisted development process.

AI pluginsClaude CodeMCP Builder
0 likes · 11 min read
10 Must‑Have Claude Code Skills to Supercharge Your Development Workflow
21CTO
21CTO
Jun 17, 2026 · Frontend Development

ArrowJS 1.0: The First UI Framework Built for AI Agents

ArrowJS 1.0, a sub‑5KB reactive UI library that requires no JSX or build step, adds an optional WebAssembly sandbox, async components, SSR and hydration, and has sparked lively community debate over its minimalist design, agent‑oriented goals, and differences from React and Vue.

Agent-orientedArrowJSReactive JavaScript
0 likes · 6 min read
ArrowJS 1.0: The First UI Framework Built for AI Agents
IT Services Circle
IT Services Circle
Jun 14, 2026 · Frontend Development

How GSAP + AI Generates Advanced Vue & React Animations in One Line

The GSAP team released the gsap‑skills AI knowledge base, enabling tools like Cursor, Claude Code and Copilot to automatically generate full‑featured GSAP timelines, ScrollTrigger setups and performance‑optimized animation code for Vue and React projects, turning complex web animations from guesswork into reliable production code.

AIGSAPReAct
0 likes · 8 min read
How GSAP + AI Generates Advanced Vue & React Animations in One Line
AI Engineering
AI Engineering
Jun 14, 2026 · Artificial Intelligence

Can a Plugin Stop AI Code Generators from Over‑Engineering? Meet Ponytail

The Ponytail open‑source plugin guides AI coding assistants through a six‑step checklist that eliminates unnecessary libraries, redundant wrappers, and excess code, cutting generated code size by 80‑94%, reducing call costs by up to 77%, and speeding execution 3‑6× across common tasks.

AI codingPonytailbenchmark
0 likes · 6 min read
Can a Plugin Stop AI Code Generators from Over‑Engineering? Meet Ponytail
LuTiao Programming
LuTiao Programming
Jun 13, 2026 · Frontend Development

When AI Redesign Breaks Your Site: Why Git Branches Aren’t Enough

Using AI to redesign a front‑end page can quickly overwrite code and static assets, exposing the limits of simple Git branches; by creating a separate Git worktree, isolating the working directory, and organizing new resources in dedicated folders, developers keep the main branch stable while safely experimenting.

AIGitVersion Control
0 likes · 18 min read
When AI Redesign Breaks Your Site: Why Git Branches Aren’t Enough
Architecture and Beyond
Architecture and Beyond
Jun 13, 2026 · R&D Management

Building an AI‑Native Software Development Organization: Redefining the Team Contract

The article analyzes how AI‑generated code reshapes software teams, urging a new organizational contract that defines ownership, realistic productivity expectations, role re‑definition, reinforced quality gates, and end‑to‑end process changes—from demand concretization to release monitoring—to sustain high‑quality delivery.

AITeam Organizationbackend
0 likes · 23 min read
Building an AI‑Native Software Development Organization: Redefining the Team Contract
Java Architect Handbook
Java Architect Handbook
Jun 12, 2026 · Frontend Development

Is WebSocket Still the Best Choice for Real-Time Push? Compare with SSE and Polling

This article examines three server‑to‑client push methods—polling, WebSocket, and Server‑Sent Events (SSE)—detailing their mechanisms, browser compatibility, pros and cons, suitable scenarios, and provides step‑by‑step demos with Node.js/Express and plain HTML to help developers choose the most efficient solution for real‑time messaging.

ExpressNode.jsPolling
0 likes · 16 min read
Is WebSocket Still the Best Choice for Real-Time Push? Compare with SSE and Polling
CodeNotes
CodeNotes
Jun 10, 2026 · Frontend Development

16 Practical CSS Tricks Using :has() to Replace JavaScript

The new CSS :has() selector finally lets parents be selected based on child states, eliminating dozens of lines of JavaScript; this article demonstrates sixteen real‑world use cases, explains compatibility across major browsers, and offers performance tips for safe adoption.

:has()CSS tricksSelector
0 likes · 9 min read
16 Practical CSS Tricks Using :has() to Replace JavaScript
Architect's Guide
Architect's Guide
Jun 9, 2026 · Frontend Development

Complete Frontend Guide to Previewing DOCX, PPTX, XLSX, and PDF Files

The article surveys commercial file‑preview services and open‑source front‑end and back‑end solutions for DOCX, PPTX, XLSX, and PDF, compares their capabilities, limitations, and costs, and provides concrete code examples and a reusable Web Component for developers.

PDFbackenddocx
0 likes · 19 min read
Complete Frontend Guide to Previewing DOCX, PPTX, XLSX, and PDF Files
LuTiao Programming
LuTiao Programming
Jun 8, 2026 · Artificial Intelligence

Why Codex Skills Aren’t Plugins – Common Misuses Explained

The article clarifies that Codex Skills differ from plugins—plugins connect external resources while skills define how to act—and shows why many developers see no effect because they invoke skills incorrectly, use vague prompts, ignore context, or choose the wrong trigger mode.

AI SkillCodexDesign Automation
0 likes · 15 min read
Why Codex Skills Aren’t Plugins – Common Misuses Explained
CodeNotes
CodeNotes
Jun 6, 2026 · Frontend Development

9 Practical JSX Tips to Write Cleaner React Code

This article presents nine concise JSX techniques—such as using clsx for class concatenation, proper short‑circuit rendering, extracting deep ternaries, forwarding props with ...rest, leveraging children, memoizing style objects, correct comment syntax, fragment shorthand, and minimal boolean attributes—to boost code readability and component flexibility in React development.

Code styleJSXProps
0 likes · 7 min read
9 Practical JSX Tips to Write Cleaner React Code
Old Zhang's AI Learning
Old Zhang's AI Learning
Jun 5, 2026 · Frontend Development

Open-Source Browser‑Based Word Editor: Introducing docx‑editor

The article reviews the newly released docx‑editor, a client‑side WYSIWYG .docx editor built on ProseMirror with React and Vue adapters, detailing its architecture, installation, usage examples, real‑time collaboration via Yjs, AI Agent SDK integration, and practical pros and cons based on hands‑on testing.

AI AgentReActVue
0 likes · 15 min read
Open-Source Browser‑Based Word Editor: Introducing docx‑editor
Full-Stack Cultivation Path
Full-Stack Cultivation Path
Jun 5, 2026 · Frontend Development

Is Next.js on the Way Out? Meet the New React Powerhouse: TanStack Start

As AI startups abandon Next.js for TanStack’s emerging ecosystem, the article examines TanStack Start’s full‑stack React capabilities, the explicit‑over‑magic philosophy, and why the growing AI community sees TanStack as the next foundational infrastructure, suggesting Next.js will remain important but no longer the sole standard.

AINext.jsReAct
0 likes · 7 min read
Is Next.js on the Way Out? Meet the New React Powerhouse: TanStack Start
CodeNotes
CodeNotes
Jun 4, 2026 · Frontend Development

N CSS Centering Techniques Every Front‑End Engineer Should Know

This article classifies centering scenarios, explains horizontal and vertical methods for inline and block elements, and walks through practical CSS solutions—from text‑align and margin auto to Flex, Grid, and absolute positioning—while highlighting pitfalls and a quick reference table.

FlexboxGridcentering
0 likes · 8 min read
N CSS Centering Techniques Every Front‑End Engineer Should Know
Java Companion
Java Companion
Jun 4, 2026 · Artificial Intelligence

12 Must-Have Agent Skills for Full‑Stack Development (Frontend, Backend & DevOps)

This article lists and evaluates twelve practical Agent Skills—ranging from Next.js best practices and React component rules to Spring Boot scaffolding, PostgreSQL optimization, and CI/CD automation—providing installation commands, real‑world examples, and safety tips for integrating AI agents into full‑stack development workflows.

AI AutomationAgent SkillsFull‑stack development
0 likes · 15 min read
12 Must-Have Agent Skills for Full‑Stack Development (Frontend, Backend & DevOps)
大转转FE
大转转FE
Jun 4, 2026 · Artificial Intelligence

Captcha Recognition in Practice: Front‑End Engineers Skip UI to Train Models

This article details how front‑end developers used a low‑code DDDD trainer and AI‑generated PyTorch CNN code to build high‑accuracy captcha recognizers, achieving up to 99% sequence accuracy while illustrating a workflow that lets developers shift from UI coding to model training with AI assistance.

AICNNPyTorch
0 likes · 15 min read
Captcha Recognition in Practice: Front‑End Engineers Skip UI to Train Models
vivo Internet Technology
vivo Internet Technology
Jun 3, 2026 · Frontend Development

How to Build a Stable @Document Mention Input with ProseMirror

This article walks through implementing an @document mention feature for a knowledge‑base Q&A input box, comparing a naïve contenteditable approach with a ProseMirror‑based solution, detailing schema design, plugin and suggestion handling, and the stability challenges of cursor, IME, and undo/redo.

PluginProseMirrordecoration
0 likes · 12 min read
How to Build a Stable @Document Mention Input with ProseMirror
CodeNotes
CodeNotes
Jun 2, 2026 · Frontend Development

Why Your CSS Rules Aren’t Applying: A 1‑Minute Guide to Selector Specificity

Every CSS developer has faced a rule that refuses to work, tried adding !important, and still seen no change; this article explains the four‑digit specificity weight, inheritance, the dangers of !important, and how @layer can cleanly manage priority, ending with practical debugging steps and best‑practice tips.

@layercssfrontend
0 likes · 13 min read
Why Your CSS Rules Aren’t Applying: A 1‑Minute Guide to Selector Specificity
CodeNotes
CodeNotes
May 27, 2026 · Frontend Development

Mastering CSS Preprocessors: Practical Less and SCSS Guide (Part 4)

This article explains why CSS preprocessors are essential for large projects, demonstrates core features of Less and SCSS—including variables, nesting, mixins, inheritance, functions, and modularization—with real code examples, compares the two syntaxes, and offers recommendations and project‑structure guidelines for modern front‑end development.

Variablescsscss-preprocessor
0 likes · 20 min read
Mastering CSS Preprocessors: Practical Less and SCSS Guide (Part 4)
AI Insight Log
AI Insight Log
May 26, 2026 · Frontend Development

How Taste Skill Gives AI‑Generated Front‑Ends Real Design Sense

Taste Skill, a 21.5k‑star GitHub project, adds a set of design rules that AI coding agents can follow, turning generic, “slop” front‑end pages into more aesthetically pleasing layouts by banning common pitfalls and offering adjustable parameters for variance, motion, and visual density.

AIAutomationGitHub
0 likes · 10 min read
How Taste Skill Gives AI‑Generated Front‑Ends Real Design Sense
Full-Stack Cultivation Path
Full-Stack Cultivation Path
May 25, 2026 · Frontend Development

Why Anime.js, the 68K‑Star Front‑End Animation Powerhouse, Is a Must‑Try

Anime.js v4, a lightweight high‑performance JavaScript animation library with over 68 000 GitHub stars, introduces a modular ES‑module API, 60 fps performance, refined timeline control, and new features like CSS‑variable, SVG path, scroll‑linked and additive animations, plus seamless Vue integration.

Anime.jsJavaScript animationVue
0 likes · 6 min read
Why Anime.js, the 68K‑Star Front‑End Animation Powerhouse, Is a Must‑Try
CodeNotes
CodeNotes
May 22, 2026 · Frontend Development

Mastering ahooks: Practical Tips and Full Guide for React Developers

This article provides a comprehensive, step‑by‑step guide to using Alibaba's ahooks library with React 18, covering installation, core hooks like useRequest, usePagination, state management hooks, side‑effect utilities, performance optimizations, real‑world examples, common pitfalls and best‑practice recommendations.

React HooksState ManagementTypeScript
0 likes · 23 min read
Mastering ahooks: Practical Tips and Full Guide for React Developers
Java Companion
Java Companion
May 22, 2026 · Frontend Development

How an 80k‑Star UI Skill Elevates AI‑Generated Front‑End Design

The ui‑ux‑pro‑max skill adds a design‑system inference engine to Claude Code, replacing generic AI‑generated pages with industry‑specific styles, color palettes, typography, and UX rules, while offering installation options, usage tips, and a discussion of token costs and skill conflicts.

AI UIClaude CodeSkill Plugin
0 likes · 10 min read
How an 80k‑Star UI Skill Elevates AI‑Generated Front‑End Design
AI Engineering
AI Engineering
May 21, 2026 · Frontend Development

Hallmark: Turning Ugly AI‑Generated Pages into Polished Designs

The article introduces Hallmark, an open‑source skill that equips AI coding tools with anti‑template design rules, enabling the generation of aesthetically pleasing, varied web pages by addressing common AI‑produced layout flaws such as purple gradients, single‑font usage, and overly centered content.

AIDesign Automationfrontend
0 likes · 4 min read
Hallmark: Turning Ugly AI‑Generated Pages into Polished Designs
CodeNotes
CodeNotes
May 20, 2026 · Frontend Development

Master CSS Basics: Write Your First Stylesheet (Part 1)

This tutorial walks beginners through CSS fundamentals, covering what CSS is, how to include styles, basic syntax, selector types, cascade and specificity, the box model, units, background, borders, display, positioning, overflow, and a complete card component example, with practical tips for each topic.

Box ModelLayoutSelectors
0 likes · 23 min read
Master CSS Basics: Write Your First Stylesheet (Part 1)
Geek Labs
Geek Labs
May 20, 2026 · Frontend Development

Two Open‑Source AI Tools to Auto‑Generate HTML Slides and Hand‑Drawn Technical Diagrams

This article introduces two open‑source projects—beautiful‑html‑templates, which lets an AI generate complete HTML slide decks from plain instructions, and ian‑handdrawn‑ppt, which converts articles or outlines into a series of Chinese hand‑drawn style technical illustration images—detailing their features, usage steps, target users, and limitations.

AIHTML slidesfrontend
0 likes · 9 min read
Two Open‑Source AI Tools to Auto‑Generate HTML Slides and Hand‑Drawn Technical Diagrams
Su San Talks Tech
Su San Talks Tech
May 18, 2026 · Frontend Development

A Game-Changing AI‑Powered PPT Skill You Must Try

The article reviews html-ppt-skill, an AI‑driven tool that generates fully styled HTML presentations instead of PPTX files, detailing its theme, layout, and animation assets, presenter‑mode implementation, cross‑platform skill integration, practical advantages, limitations, and how it exemplifies the emerging AI skill ecosystem.

AI Agentsdesign systemfrontend
0 likes · 13 min read
A Game-Changing AI‑Powered PPT Skill You Must Try
CodeNotes
CodeNotes
May 17, 2026 · Frontend Development

Modern CSS Development Techniques: Ditch JS, Embrace Pure CSS Possibilities

This article provides a comprehensive guide to modern CSS techniques—including custom properties, native nesting, logical properties, container queries, the :has() selector, dark‑mode theming, pure‑CSS accordions, dialogs, tabs, tooltips, scroll‑driven animations, parallax, sticky elements, advanced Grid layouts, Subgrid, @layer, @scope, color‑mix, math functions, carousels, lazy‑load placeholders, form validation, theme toggles, and performance optimizations—showing how to replace JavaScript‑heavy interactions with pure CSS solutions.

container-queriescsscss-variables
0 likes · 34 min read
Modern CSS Development Techniques: Ditch JS, Embrace Pure CSS Possibilities
Shuge Unlimited
Shuge Unlimited
May 16, 2026 · User Experience Design

Dress Before You Go: UI/UX Redesign of the OpenSpec Project

This article walks through a complete UI/UX redesign of the OpenSpec project, detailing the exploratory audit of nine visual issues, design‑system decisions on colors, fonts and tokens, the Propose and Apply steps with concrete code changes, verification pitfalls, and lessons learned for future visual changes.

OpenSpecReActTailwind CSS
0 likes · 27 min read
Dress Before You Go: UI/UX Redesign of the OpenSpec Project
Bilibili Tech
Bilibili Tech
May 15, 2026 · Frontend Development

Building an AI‑Powered Frontend Development Workflow with Bili‑FE

This article details how the Bili‑FE team evolved prompt engineering into a Harness Engineering workflow, creating a structured .workflow knowledge base and a series of AI‑driven commands that automate the entire frontend development lifecycle from requirement preprocessing to testing and mock generation.

AIAutomationKnowledge Base
0 likes · 20 min read
Building an AI‑Powered Frontend Development Workflow with Bili‑FE
Frontend AI Walk
Frontend AI Walk
May 15, 2026 · Artificial Intelligence

Efficient AI Coding with Claude Code: Essential ECC Tools and Minimal Install

This guide walks developers through selecting, installing, and using the six core ECC components—Rules, search‑first, Reviewer Agent, Quality‑Gate, Documentation‑Lookup, and minimal Hooks—to create a streamlined, conflict‑free AI‑assisted coding workflow for Claude Code, emphasizing a consult‑first, minimal‑install approach.

AI programmingAutomationClaude Code
0 likes · 14 min read
Efficient AI Coding with Claude Code: Essential ECC Tools and Minimal Install
Eric Tech Circle
Eric Tech Circle
May 15, 2026 · Frontend Development

A Free Markdown Formatting Tool Tailored for WeChat Public Account Authors

The author rebuilt a WeChat public‑account markdown formatter using Codex App + GPT 5.5 and Kiro IDE + Claude Opus 4.7, offering real‑time preview, one‑click inline‑style copy, multiple themes, code highlighting and mobile preview to eliminate tedious manual styling while keeping the tool completely free.

Code HighlightingEditorHTML
0 likes · 6 min read
A Free Markdown Formatting Tool Tailored for WeChat Public Account Authors
Old Zhang's AI Learning
Old Zhang's AI Learning
May 13, 2026 · Frontend Development

32 Open-Source HTML Slide Templates to Stop AI from Generating Ugly PPTs

The article introduces a GitHub repository offering 32 ready‑to‑use HTML/CSS slide templates designed for AI agents, explains a six‑step workflow for selecting and customizing templates, evaluates the strengths and limitations of the approach, and argues that HTML is re‑emerging as a universal presentation format.

AI AgentsHTMLfrontend
0 likes · 9 min read
32 Open-Source HTML Slide Templates to Stop AI from Generating Ugly PPTs
Shuge Unlimited
Shuge Unlimited
May 12, 2026 · Frontend Development

Building a Project Skeleton from Scratch with OpenSpec: Full Workflow Walkthrough

This article documents a step‑by‑step OpenSpec workflow that starts with requirement exploration, generates proposal, design, specs, review and task artifacts, executes them to scaffold a React 19 + TypeScript + Vite + Tailwind project, handles GitHub integration, validates the build, and archives the change while sharing practical lessons and pitfalls.

AutomationOpenSpecReAct
0 likes · 24 min read
Building a Project Skeleton from Scratch with OpenSpec: Full Workflow Walkthrough
vivo Internet Technology
vivo Internet Technology
May 6, 2026 · Frontend Development

Implementing AVIF at Vivo: Next‑Gen Image Format in Practice

The article details how Vivo’s front‑end team tackled performance bottlenecks by researching AVIF, designing a graceful degradation strategy with CDN edge caching and asynchronous server transcoding, implementing smart format detection, and validating a 20%+ size reduction over WebP that yielded 15‑25% LCP improvement, 30%+ first‑screen load gains and over 30% bandwidth savings.

AVIFCDNImage optimization
0 likes · 12 min read
Implementing AVIF at Vivo: Next‑Gen Image Format in Practice
Old Zhang's AI Learning
Old Zhang's AI Learning
May 6, 2026 · Frontend Development

Testing Open‑Slide: A React‑Based PPT Framework Built for AI Agents

Open‑slide is a React and Tailwind powered slide framework designed for AI coding agents such as Claude Code, allowing natural‑language prompts to generate 1920×1080 decks with agent‑native authoring, inspector comments, asset management, presenter mode, static deployment, and a hands‑on evaluation of its strengths and limitations.

AI AgentsClaude CodeReAct
0 likes · 11 min read
Testing Open‑Slide: A React‑Based PPT Framework Built for AI Agents
CodeNotes
CodeNotes
May 5, 2026 · Frontend Development

Common React Hook Anti‑Patterns That Trip Up 80% of Teams

The article examines why many React projects become unstable due to misuse of hooks, presenting seven frequent anti‑patterns with concrete bad and good code examples, explaining the underlying problems, and offering practical guidelines and a checklist to write reliable Hook‑based effects.

Anti-PatternHooksReAct
0 likes · 14 min read
Common React Hook Anti‑Patterns That Trip Up 80% of Teams
Geek Labs
Geek Labs
May 3, 2026 · Frontend Development

Edit Word Docs Directly in the Browser with This Open‑Source Engine

SuperDoc is an open‑source DOCX engine that parses and renders real .docx files in the browser with full format fidelity, offers one‑click integration for major front‑end frameworks, real‑time Yjs collaboration, and AI‑driven document automation.

AI Automationbrowserdocx
0 likes · 5 min read
Edit Word Docs Directly in the Browser with This Open‑Source Engine
CodeNotes
CodeNotes
May 2, 2026 · Frontend Development

Mastering React useEffect: The Complete Guide to Avoid Common Pitfalls

This guide explains what useEffect does, its three core execution rules, how dependency arrays change its behavior, eight practical scenarios, six typical pitfalls with concrete code examples, and best‑practice recommendations for writing clean, leak‑free React functional components.

HooksJavaScriptReAct
0 likes · 10 min read
Mastering React useEffect: The Complete Guide to Avoid Common Pitfalls
Tech Minimalism
Tech Minimalism
Apr 25, 2026 · User Experience Design

8 Essential AI Agent Skills Every UI Designer Should Install

This guide lists eight AI‑powered agent skills for UI designers, explains why the installation order matters, provides concrete CLI commands and example workflows, and shows how these skills turn Claude Code from a code generator into a full‑featured design partner.

AI AgentsClaude CodeTailwind
0 likes · 22 min read
8 Essential AI Agent Skills Every UI Designer Should Install
MeowKitty Programming
MeowKitty Programming
Apr 20, 2026 · Frontend Development

Will Scaffolding Tools Survive the AI Era? How Their Role Is Shifting

The article argues that while AI can replace the code‑generation part of project scaffolds, scaffolding tools will not disappear; instead they will evolve from quick starters to enforceable, organization‑wide engineering standards that keep teams consistent and maintainable.

AI code generationScaffoldingfrontend
0 likes · 7 min read
Will Scaffolding Tools Survive the AI Era? How Their Role Is Shifting
DevOps Coach
DevOps Coach
Apr 19, 2026 · Frontend Development

Why Replacing React with HTMX Boosted Our Team’s Productivity

A senior engineer swapped a server‑rendered CRUD module from React to HTMX, measured build times, PR review speed, and bug rates, and found that simplifying UI interactions to HTTP requests dramatically reduced client‑side state complexity, improved predictability, and empowered junior developers.

HTMXReActState Management
0 likes · 12 min read
Why Replacing React with HTMX Boosted Our Team’s Productivity
Geek Labs
Geek Labs
Apr 19, 2026 · Frontend Development

Powerful Frontend Tools: AI‑Generated Animations and One‑Click Design Language Extraction

The article introduces two practical frontend utilities—AI_Animation, which offers 300+ AI prompts to instantly create stunning HTML animations, and design‑extract (designlang), an npm package that extracts a website's full design language with a single command, complete with usage steps and output details.

AI_AnimationHTML animationdesign extraction
0 likes · 5 min read
Powerful Frontend Tools: AI‑Generated Animations and One‑Click Design Language Extraction
Geek Labs
Geek Labs
Apr 19, 2026 · Frontend Development

Why Vercel’s wterm Is a Game‑Changing Web Terminal for Embedding in Apps

Vercel Labs’ open‑source wterm provides a tiny (≈12 KB) WebAssembly‑based terminal emulator that renders via the DOM, offering native text selection, clipboard support, CSS styling, and simple React integration, making it ideal for AI assistants, online IDEs, and documentation sites.

ReActVercelWebAssembly
0 likes · 4 min read
Why Vercel’s wterm Is a Game‑Changing Web Terminal for Embedding in Apps
Frontend AI Walk
Frontend AI Walk
Apr 14, 2026 · User Experience Design

How Impeccable Turns AI‑Generated UI from Generic to Professional

This guide explains why AI‑generated interfaces often look generic, introduces the open‑source Impeccable agent skill that supplies design references and anti‑pattern checks, and walks through its core components, slash commands, installation, CLI detection, and real‑world use cases for creating polished, production‑ready UI.

AI designCLIImpeccable
0 likes · 16 min read
How Impeccable Turns AI‑Generated UI from Generic to Professional
James' Growth Diary
James' Growth Diary
Apr 13, 2026 · Frontend Development

Local Inference & Edge AI: Why Front‑End AI Is the Next Battlefield

Edge AI runs AI models directly in browsers or devices, offering zero latency, zero API cost, and full privacy, and the article explains the three technical breakthroughs that make it possible, compares WebLLM, Transformers.js and Ollama, and provides a hybrid architecture with concrete engineering challenges and solutions that can cut total AI costs by 40‑55% for typical front‑end applications.

OllamaTransformers.jsWebGPU
0 likes · 20 min read
Local Inference & Edge AI: Why Front‑End AI Is the Next Battlefield

HTML‑in‑Canvas Lets Browsers Render Games and Doom‑Style Effects

HTML‑in‑Canvas is an experimental Web API that captures HTML elements as images and draws them onto a canvas, giving developers pixel‑level control to create game‑like UI effects, dynamic layouts, and even embed live web content inside classic games like Doom, while the proposal advances through W3C.

AICanvasHTML-in-Canvas
0 likes · 9 min read
HTML‑in‑Canvas Lets Browsers Render Games and Doom‑Style Effects
Design Hub
Design Hub
Apr 12, 2026 · User Experience Design

10 Stunning 3D Interactive Globes That Redefine Data Visualization

The article showcases ten interactive 3D globe visualizations—ranging from a music‑driven world tour to real‑time earthquake maps—detailing their data sources, React‑based tech stacks, and design insights that help designers move beyond flat maps toward immersive, narrative‑driven data storytelling.

Data VisualizationInteractive GlobeReAct
0 likes · 8 min read
10 Stunning 3D Interactive Globes That Redefine Data Visualization
Code Mala Tang
Code Mala Tang
Apr 10, 2026 · Frontend Development

Mastering CSS ‘:nth-child of’ Selector for Elegant Date Range Pickers

This guide demonstrates how to use the CSS ‘:nth-child of’ selector syntax together with minimal JavaScript to build a fully functional date‑range picker, covering selector mechanics, HTML structure, CSS grid layout, range‑selection logic, and visual styling of the selected period.

Date PickerJavaScriptSelectors
0 likes · 8 min read
Mastering CSS ‘:nth-child of’ Selector for Elegant Date Range Pickers
Frontend AI Walk
Frontend AI Walk
Apr 8, 2026 · Frontend Development

Mastering Pretext: A Practical Frontend Guide for Precise Text Measurement

This article explains how the open‑source Pretext library enables fast, accurate multi‑line text measurement and layout in pure JavaScript/TypeScript, outlines the problems it solves, lists ideal front‑end scenarios, provides step‑by‑step API usage, and warns when the library should be avoided.

JavaScriptLayoutPretext
0 likes · 12 min read
Mastering Pretext: A Practical Frontend Guide for Precise Text Measurement
AI Architecture Path
AI Architecture Path
Apr 7, 2026 · Frontend Development

Boost AI‑Generated UI Consistency with the Awesome DESIGN.md Repository

The article introduces the open‑source VoltAgent/awesome-design‑md GitHub repository, explains how its DESIGN.md markdown design system enables AI‑friendly, zero‑cost reuse of major‑brand UI specifications, outlines its nine core modules, categorizes templates for various product types, and provides step‑by‑step guidance for quick integration into frontend projects.

AIGitHubMarkdown
0 likes · 10 min read
Boost AI‑Generated UI Consistency with the Awesome DESIGN.md Repository
Tech Minimalism
Tech Minimalism
Apr 2, 2026 · Artificial Intelligence

10 Proven AI Agent Skills Every Developer Should Use

This article curates ten validated AI Agent Skills—spanning frontend design, caching, full‑stack scaffolding, code review, testing, PR automation, formatting, documentation updates, and skill discovery—providing repository links and installation commands to help developers automate repetitive tasks and boost productivity across the software development lifecycle.

AI Agent SkillsAutomationDeveloper Tools
0 likes · 11 min read
10 Proven AI Agent Skills Every Developer Should Use
Node.js Tech Stack
Node.js Tech Stack
Apr 1, 2026 · Frontend Development

How a Former React Core Engineer’s Pretext Library Solves a 30‑Year‑Old Browser Text Layout Problem

Front‑end developers struggle to measure text height without rendering, causing performance issues in virtual scrolling, chat bubbles, and masonry layouts, but the TypeScript‑based Pretext library bypasses the DOM, uses Canvas measureText, and delivers order‑of‑magnitude speedups while offering line‑level layout APIs.

JavaScriptPretextTypeScript
0 likes · 10 min read
How a Former React Core Engineer’s Pretext Library Solves a 30‑Year‑Old Browser Text Layout Problem
Code Mala Tang
Code Mala Tang
Mar 30, 2026 · Frontend Development

Mastering New CSS Viewport Units: lv, sv, and dv for Mobile Layouts

This article explains why the traditional 100vh unit fails on mobile browsers, introduces the three new CSS viewport unit families (large, small, and dynamic), and provides practical code examples and guidance for choosing the right unit in responsive web designs.

Mobile WebViewport Unitscss
0 likes · 10 min read
Mastering New CSS Viewport Units: lv, sv, and dv for Mobile Layouts
Machine Heart
Machine Heart
Mar 30, 2026 · Frontend Development

How Cheng Lou’s Pretext Library Powers the Viral Bad Apple Text‑Wrap Effect

The article introduces Pretext, a pure JavaScript/TypeScript text‑layout engine that measures and renders text without touching the DOM, claims speed hundreds of times faster than traditional methods, and showcases its use in the viral Bad Apple animation and several interactive demos, while highlighting its AI‑friendly API, tiny footprint, and open‑source impact.

AI-friendlyJavaScriptPretext
0 likes · 6 min read
How Cheng Lou’s Pretext Library Powers the Viral Bad Apple Text‑Wrap Effect
Java Architect Handbook
Java Architect Handbook
Mar 27, 2026 · Frontend Development

Mastering CORS: In‑Depth Java Interview Guide for Cross‑Origin Solutions

This comprehensive guide explains the browser same‑origin policy, why cross‑origin restrictions exist, and walks through five major solutions—CORS, proxy servers, JSONP, postMessage, and WebSocket—detailing their principles, advantages, drawbacks, configuration examples, and best‑practice recommendations for interview scenarios.

CORSCross-OriginJava
0 likes · 16 min read
Mastering CORS: In‑Depth Java Interview Guide for Cross‑Origin Solutions
Coder Trainee
Coder Trainee
Mar 25, 2026 · Frontend Development

Step-by-Step Docsify Tutorial: Build a Dynamic Documentation Site

This guide introduces Docsify, outlines its key advantages, walks through installing the docsify‑cli, setting up a project, configuring index.html, cover page, navbar and sidebar files, and shows how to serve the site locally.

ConfigurationDocsifydocumentation
0 likes · 4 min read
Step-by-Step Docsify Tutorial: Build a Dynamic Documentation Site
Coder Trainee
Coder Trainee
Mar 23, 2026 · Frontend Development

Build a Simple HTML/CSS Image Carousel from Scratch

The article walks through creating a basic image carousel using native HTML5, CSS positioning, and a minimal markup structure, explaining each step and providing code snippets while noting that JavaScript navigation still needs to be added.

CarouselHTMLJavaScript
0 likes · 4 min read
Build a Simple HTML/CSS Image Carousel from Scratch
AutoHome Frontend
AutoHome Frontend
Mar 22, 2026 · Frontend Development

Can a Browser‑Only Video Editor Rival Desktop NLEs? Inside Tooscut’s WebGPU Stack

Tooscut is a fully browser‑based professional video editor that leverages React 19, TanStack Start, a Rust‑compiled WebAssembly rendering engine, and WebGPU acceleration, allowing multi‑track timelines, keyframe animation, and real‑time filters without uploading files, illustrating how modern web technologies can approach native performance while keeping data local.

Browser Video EditingReActWebAssembly
0 likes · 5 min read
Can a Browser‑Only Video Editor Rival Desktop NLEs? Inside Tooscut’s WebGPU Stack
AndroidPub
AndroidPub
Mar 19, 2026 · Frontend Development

How to Turn a Brilliant App Idea into a Live Product in 5 Free-Tool Steps

This guide walks developers through a five-step, zero‑cost workflow—using AI‑driven design, code generation, backend integration, Git versioning, and Vercel deployment—to transform a concept into a functional web or mobile app without extensive coding expertise.

GitHubVercelai-development
0 likes · 8 min read
How to Turn a Brilliant App Idea into a Live Product in 5 Free-Tool Steps
Code Wrench
Code Wrench
Mar 17, 2026 · Backend Development

How to Elegantly Extend 1Panel: Three Proven Paths for Custom Development

This guide explains three practical approaches to extend the open‑source 1Panel platform—using the app store for custom apps, adding backend modules with Go, or modifying the Vue front‑end—while emphasizing non‑intrusive development to avoid upgrade conflicts.

1PanelDockerVue
0 likes · 8 min read
How to Elegantly Extend 1Panel: Three Proven Paths for Custom Development
DeWu Technology
DeWu Technology
Mar 16, 2026 · Frontend Development

Boosting Frontend Code Review with AI: From Manual CR to Automated Cursor Agent

This article outlines the challenges of manual frontend code review, compares AI-powered CR solutions, details a pipeline integration using Cursor Agent CLI, and provides practical guidelines, model selection tips, and built‑in prompt engineering to automate and improve code quality checks.

AI Code ReviewCI integrationCursor Agent
0 likes · 12 min read
Boosting Frontend Code Review with AI: From Manual CR to Automated Cursor Agent
Bilibili Tech
Bilibili Tech
Mar 12, 2026 · Frontend Development

Turning Canvas Snapshots into Real Video Cards with ProseMirror

This article recounts Bilibili’s evolution from using Canvas‑based screenshot tricks to render video cards in the Quill editor to adopting ProseMirror with Tiptap, detailing the technical debt, the new schema and NodeView architecture, performance optimizations, batch link validation, and strategies for backward compatibility and real‑time interactive components.

ProseMirrorfrontendperformance
0 likes · 17 min read
Turning Canvas Snapshots into Real Video Cards with ProseMirror
21CTO
21CTO
Feb 26, 2026 · Frontend Development

jQuery 4.0 Unveiled: New Features, Modern Architecture, and Upgrade Guide

On February 24, 2026, jQuery celebrated its 20th anniversary with the release of version 4.0, a major overhaul that streamlines the library, adopts ES modules, drops legacy browser support, improves security, and offers a lightweight, migration‑friendly upgrade path for developers.

ES ModulesJavaScriptLibrary
0 likes · 7 min read
jQuery 4.0 Unveiled: New Features, Modern Architecture, and Upgrade Guide
vivo Internet Technology
vivo Internet Technology
Feb 25, 2026 · Frontend Development

How We Built a Multi‑Region H5 Platform with One Codebase and 90% Cost Savings

This article details the design and implementation of a multi‑region H5 platform that uses a single codebase and unified architecture, covering platform UI internationalisation, unified login, three‑layer region storage, environment‑aware configuration, ZooKeeper service discovery, region‑specific DLL builds, and npm private‑registry strategies to achieve seamless deployment across multiple data centres while cutting development effort by up to ninety percent.

Vuedeploymentfrontend
0 likes · 21 min read
How We Built a Multi‑Region H5 Platform with One Codebase and 90% Cost Savings
Su San Talks Tech
Su San Talks Tech
Feb 19, 2026 · Frontend Development

Boost Front‑End Productivity: Turn ASCII Sketches into Code with AI

By leveraging AI’s ability to parse structured ASCII sketches, developers can replace ambiguous natural‑language UI descriptions with precise visual blueprints, rapidly generate front‑end code for dashboards, iterate layouts, and fine‑tune components, while understanding the method’s benefits, workflow, and limitations.

AI code generationPrompt Engineeringascii sketch
0 likes · 10 min read
Boost Front‑End Productivity: Turn ASCII Sketches into Code with AI
Code Mala Tang
Code Mala Tang
Feb 19, 2026 · Frontend Development

When AI Becomes a Junior Engineer: Real Front‑End Gains and Limits

AI is not the future of engineering but a tireless junior engineer that can speed up repetitive tasks, mechanical refactoring, and test scaffolding, while still failing at architectural decisions, performance reasoning, and async concurrency, so senior developers must guide and verify its output.

AIfrontendperformance
0 likes · 10 min read
When AI Becomes a Junior Engineer: Real Front‑End Gains and Limits
Node.js Tech Stack
Node.js Tech Stack
Feb 14, 2026 · Frontend Development

Bridging the AI Code Quality Gap: 3 Essential Front-End Skills

While AI tools like Cursor generate code faster than ever, the resulting quality varies widely; by equipping AI with the frontend-design skill, the react-best-practices (or antfu/skills) bundle, and a professional 28‑inch 4K monitor such as the BenQ RD280U, front‑end developers can ensure high‑design UI, robust engineering practices, and sustained visual comfort.

AI code generationbest practicesdesign skills
0 likes · 14 min read
Bridging the AI Code Quality Gap: 3 Essential Front-End Skills
Coder Trainee
Coder Trainee
Feb 12, 2026 · Frontend Development

Comprehensive Guide to Building Docsify Documentation Sites

This tutorial walks through installing Docsify, initializing a project, configuring index.html, coverpage, navbar and sidebar files, and serving the documentation site locally, providing step‑by‑step commands, code snippets, and screenshots for a complete Docsify setup.

DocsifyMarkdownNode.js
0 likes · 5 min read
Comprehensive Guide to Building Docsify Documentation Sites
Qunar Tech Salon
Qunar Tech Salon
Feb 10, 2026 · Frontend Development

How AI + Rule Engines Revolutionize Frontend Code Generation for Complex C‑End Apps

This article examines the challenges of pixel‑perfect UI reconstruction and semantic code generation for consumer‑facing front‑end projects, and presents a hybrid rule‑algorithm and large‑language‑model architecture that streamlines design‑to‑code (D2C) and requirement‑to‑code (P2C) workflows, integrates IDE plugins, and dramatically improves developer productivity.

AI codingIDE plugincode generation
0 likes · 25 min read
How AI + Rule Engines Revolutionize Frontend Code Generation for Complex C‑End Apps
DaTaobao Tech
DaTaobao Tech
Feb 6, 2026 · Frontend Development

How AI‑Powered Cursor Delivered a Full‑Stack Frontend Feature for Red‑Packet Sign‑In

This article records the end‑to‑end practice of using the AI coding tool Cursor to deliver the front‑end of a red‑packet sign‑in page’s "single‑product rebate" feature, covering requirement breakdown, AI‑generated design and code, popup animations, feed insertion, deduplication, debugging, and final verification.

AI codingCursoranimation
0 likes · 11 min read
How AI‑Powered Cursor Delivered a Full‑Stack Frontend Feature for Red‑Packet Sign‑In
大转转FE
大转转FE
Feb 5, 2026 · Frontend Development

How to Build a Low‑Intrusion, AI‑Powered Mock Server for Frontend Development

This article presents a comprehensive mock‑data tool for front‑end/back‑end separation that solves request interception, flexible rule matching, business‑semantic data generation via AI, and team‑wide sharing, detailing its architecture, core implementations, code snippets, usage workflow, and future roadmap.

Mockfrontendrequest-interception
0 likes · 19 min read
How to Build a Low‑Intrusion, AI‑Powered Mock Server for Frontend Development
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Feb 5, 2026 · Frontend Development

Why Frontend Recording & Replay Matters: Master rrweb for Debugging and Analysis

This article explains why front‑end recording and replay are essential for diagnosing invisible bugs, introduces the open‑source rrweb tool and its core modules, compares it with video and screenshot methods, and provides step‑by‑step guidance for installing, configuring, recording, replaying, and optimizing rrweb in Vue 3 applications.

PrivacyVuedebugging
0 likes · 36 min read
Why Frontend Recording & Replay Matters: Master rrweb for Debugging and Analysis
Coder Trainee
Coder Trainee
Feb 3, 2026 · Frontend Development

How to Turn an Entire Website Grayscale with a Few CSS Lines

This article explains how to apply a global CSS grayscale filter to make every element on a website appear in shades of gray, discusses compatibility considerations, and provides a concise code example that works across major browsers.

HTMLbrowser compatibilitycss
0 likes · 4 min read
How to Turn an Entire Website Grayscale with a Few CSS Lines
Su San Talks Tech
Su San Talks Tech
Jan 27, 2026 · Fundamentals

What’s New in IntelliJ IDEA 2025.3? Smaller Unified Edition and Full Spring Boot 4 Support

IntelliJ IDEA 2025.3 introduces a unified, 30% smaller edition, quieter development workflow, full Spring Framework 7 and Spring Boot 4 support, enhanced language features for Java, Kotlin and Scala, improved Git integration, terminal and build‑tool optimizations, plus performance upgrades for large web projects.

IDEIntelliJ IDEASpring Boot
0 likes · 6 min read
What’s New in IntelliJ IDEA 2025.3? Smaller Unified Edition and Full Spring Boot 4 Support
Node.js Tech Stack
Node.js Tech Stack
Jan 27, 2026 · Frontend Development

Vue Gets AI Skills: Evan You Endorses a Tool to Cure Hallucinated Code

The article introduces vue-skills, an open‑source AI Agent Skill set for Vue endorsed by its creator Evan You, explains why Vue needs such skills to fix AI hallucinations caused by outdated syntax and type inference, describes the scientific validation process, categorizes the skills, and shows how to install and use them via Skills Hub.

AIAgent SkillsTypeScript
0 likes · 5 min read
Vue Gets AI Skills: Evan You Endorses a Tool to Cure Hallucinated Code
IT Services Circle
IT Services Circle
Jan 26, 2026 · Frontend Development

Why oxfmt and oxlint Are Redefining Frontend Toolchains with 30‑50× Speed Gains

The article examines the rapid adoption of oxfmt and oxlint—Rust‑based formatter and linter from VoidZero—highlighting their massive npm download growth, performance advantages over Prettier and ESLint, key technical features, and why their speed improvements make migration inevitable for modern front‑end projects.

formatterfrontendlinter
0 likes · 5 min read
Why oxfmt and oxlint Are Redefining Frontend Toolchains with 30‑50× Speed Gains
SpringMeng
SpringMeng
Jan 25, 2026 · Interview Experience

How a 40‑Minute Shower Cost Me an Offer and What I Learned from the Interview

The author recounts how a 40‑minute shower coincided with a missed offer notification, then provides a detailed set of technical interview questions covering frontend, backend, mobile, databases, cloud and AI tools, adds commentary on AI‑assisted development, and explains the final hiring decision.

AI toolsDatabasesHiring Process
0 likes · 6 min read
How a 40‑Minute Shower Cost Me an Offer and What I Learned from the Interview
21CTO
21CTO
Jan 21, 2026 · Frontend Development

What’s New in jQuery 4.0? Major Changes, Size Cut, and Trusted Types Support

jQuery 4.0, the first major release in a decade, drops IE 10 support, switches to ES modules, removes obsolete APIs, shrinks the library by over 3 KB, adds Trusted Types protection, and sparks mixed opinions about the future relevance of the once‑ubiquitous JavaScript library.

LibraryTrusted Typesfrontend
0 likes · 6 min read
What’s New in jQuery 4.0? Major Changes, Size Cut, and Trusted Types Support
Node.js Tech Stack
Node.js Tech Stack
Jan 16, 2026 · Industry Insights

Astro Acquired by Cloudflare – Implications and Developer FAQs

Astro, the content‑driven frontend framework, has been acquired by Cloudflare, with its core team joining the company, and the article explains why the deal makes sense, how it benefits developers, and what the broader trend of framework acquisitions indicates for the industry.

AcquisitionAstroCloudflare
0 likes · 5 min read
Astro Acquired by Cloudflare – Implications and Developer FAQs
DaTaobao Tech
DaTaobao Tech
Jan 16, 2026 · Frontend Development

How AI Enables “Write Code, Fix Accessibility” Across Front‑End Projects

This article presents an AI‑driven accessibility solution that embeds code‑review and automatic fixing into the development workflow, tackles high‑frequency issues such as text reading, focus management and interaction recognition, achieves over 95% fix rates in both testing and production, and outlines future extensions to native and D2C scenarios.

AIaccessibilitycode review
0 likes · 14 min read
How AI Enables “Write Code, Fix Accessibility” Across Front‑End Projects