AutoHome Frontend
Author

AutoHome Frontend

AutoHome Frontend Team

35
Articles
0
Likes
35
Views
0
Comments
Recent Articles

Latest from AutoHome Frontend

35 recent articles
AutoHome Frontend
AutoHome Frontend
Aug 1, 2019 · Frontend Development

8 Hidden DOM Features You Didn’t Know Exist (And How to Use Them)

This article reveals eight lesser‑known DOM and Web API features—such as addEventListener options, smooth scrollTo, optional timer arguments, defaultChecked, normalize/wholeText, insertAdjacent methods, event.detail, and scrollHeight/scrollWidth—explaining their purpose, browser support, and providing practical code examples.

DOMJavaScriptWeb API
0 likes · 17 min read
8 Hidden DOM Features You Didn’t Know Exist (And How to Use Them)
AutoHome Frontend
AutoHome Frontend
Jun 24, 2019 · Frontend Development

Unlock the Power of JavaScript’s reduce: 5 Creative Uses Beyond Simple Summing

This tutorial explores why the .reduce() method feels intimidating, demonstrates its basic usage with addition and multiplication, and then showcases five unconventional applications—including converting arrays to objects, flattening nested arrays, performing dual calculations in a single pass, merging map and filter, and sequencing asynchronous calls—while providing clear code examples and performance considerations.

Functional ProgrammingJavaScriptWeb Development
0 likes · 14 min read
Unlock the Power of JavaScript’s reduce: 5 Creative Uses Beyond Simple Summing
AutoHome Frontend
AutoHome Frontend
Jun 3, 2019 · Frontend Development

Boost JavaScript Type Safety in VS Code with JSDoc Annotations

Learn how to enable static type checking for JavaScript in Visual Studio Code using JSDoc comments, covering configuration, type definitions, generics, type casting, and runtime safeguards to improve code reliability without a separate build step.

JSDocJavaScriptStatic Type Checking
0 likes · 20 min read
Boost JavaScript Type Safety in VS Code with JSDoc Annotations
AutoHome Frontend
AutoHome Frontend
May 14, 2019 · Fundamentals

Boost Your VSCode Productivity with Essential Settings and Shortcuts

This guide walks you through a collection of VSCode tweaks—including project switching, file preview handling, window title customization, minimap and cursor tweaks, breadcrumb navigation, theme token adjustments, and handy keyboard shortcuts—plus a must‑have Settings Sync extension, all aimed at streamlining your daily coding workflow.

EditorProductivityTips
0 likes · 9 min read
Boost Your VSCode Productivity with Essential Settings and Shortcuts
AutoHome Frontend
AutoHome Frontend
Mar 22, 2019 · Frontend Development

Choosing the Right Rendering Strategy: SSR, CSR, Static & Rehydration Explained

Developers must decide where rendering occurs—server-side, client-side, static generation, or rehydration—by understanding key terms, performance metrics like TTFB, FP, FCP, and TTI, and weighing trade‑offs such as speed, resource usage, SEO impact, and complexity across modern frameworks.

CSRFrontend DevelopmentRehydration
0 likes · 16 min read
Choosing the Right Rendering Strategy: SSR, CSR, Static & Rehydration Explained
AutoHome Frontend
AutoHome Frontend
Feb 18, 2019 · Frontend Development

Boost Fast App Development: Interface Encapsulation, Global APIs, and Performance Tweaks

This article shares practical techniques for fast app projects, covering environment setup, API encapsulation with async/await support, global API mounting, rpk size reduction, callback‑to‑Promise conversion, tabs lazy‑loading, and a custom PV tracking SDK to improve maintainability and performance.

Performance Optimizationfast appglobal API
0 likes · 19 min read
Boost Fast App Development: Interface Encapsulation, Global APIs, and Performance Tweaks
AutoHome Frontend
AutoHome Frontend
Jan 14, 2019 · Frontend Development

12 Must‑Know CSS Fixes for Common Layout Pitfalls

This article compiles frequent CSS problems—from button styling and overflow handling to flex‑wrap, grid layouts, long‑word breaking, transparent gradients, pseudo‑elements, and input accessibility—offering concise code solutions and practical tips to improve cross‑browser compatibility and user experience.

AccessibilityCSSFrontend
0 likes · 14 min read
12 Must‑Know CSS Fixes for Common Layout Pitfalls
AutoHome Frontend
AutoHome Frontend
Jan 7, 2019 · Frontend Development

From Callbacks to Async/Await: Mastering JavaScript Asynchronous Programming

This article walks through the evolution of JavaScript asynchronous patterns—from basic callbacks and their pitfalls, through Promise creation, chaining, and error handling, to the modern async/await syntax—showing how to write clear, maintainable code for real‑world API calls.

AsynchronousCallbacksJavaScript
0 likes · 22 min read
From Callbacks to Async/Await: Mastering JavaScript Asynchronous Programming