Implementing Conventional Commit Standards in Frontend Projects

Understanding Conventional Commits Conventional Commits is a lightweight convention built on top of commit messages. It provides a set of rules for creating a clear commit history, which makes it easier to write automated tools on top of the codebase. By standardizing the format, teams can improve collaboration efficiency and codebase maintaina ...

Posted on Sat, 25 Jul 2026 17:02:17 +0000 by knford

Vue 3 Project Setup and Configuration Guide

Project Initialization with pnpm Some advantages: approximately 2x faster than similar tools, saves disk space... https://www.pnpm.cn/ Installation: npm install -g pnpm Creating a project: pnpm create vue ESLint & Prettier Configuration Environment Synchronization: Install the ESLint plugin and enable auto-fix on save Disable the ...

Posted on Fri, 08 May 2026 19:33:46 +0000 by cuboidgraphix