You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 weeks ago | |
---|---|---|
.changeset | 1 month ago | |
.github/workflows | 1 month ago | |
.vscode | 1 month ago | |
docs | 1 month ago | |
internal/tsconfig | 1 month ago | |
packages | 2 weeks ago | |
public | 3 months ago | |
scripts | 1 month ago | |
.gitignore | 1 month ago | |
.npmrc | 1 month ago | |
.prettierrc | 3 months ago | |
package.json | 4 weeks ago | |
pnpm-lock.yaml | 4 weeks ago | |
pnpm-workspace.yaml | 3 months ago | |
readme.md | 2 weeks ago | |
vitest.shared.ts | 1 month ago | |
vitest.workspace.ts | 3 months ago |
readme.md
xyx-utils 🚀
模块化的工具库集合,提供跨平台、多场景的实用功能。
功能特性
- 多模块支持:包含 Core、Node、Vue3 等独立模块
- 现代化构建:基于 Vite & TypeScript 构建
- 完善测试:Vitest 单元测试覆盖
- 模块化架构:使用 PNPM Workspace 管理多包
安装
# 安装核心模块
pnpm add @xyx-utils/core
# 安装Node工具
pnpm add @xyx-utils/node
# 安装Vue3工具
pnpm add @xyx-utils/vue3
模块列表
模块名称 | 描述 | 文档地址 |
---|---|---|
@xyx-utils/core | 基础工具函数集合 | 文档 |
@xyx-utils/node | Node.js 运行时工具 | 文档 |
@xyx-utils/vue3 | Vue3 组件工具库 | 文档 |
@xyx-utils/shared | 共享类型定义 | 文档 |
快速开始
// 使用核心模块
import { formatDate } from '@xyx-utils/core';
const currentDate = new Date();
const formatted = formatDate(currentDate, 'YYYY-MM-DD');
const obj = { a: 1 };
开发指南
开发新模块
-
配置路径别名
- 在
packages/.vitepress/config.ts
添加startsDirs
和alias
- 更新
internal/tsconfig/tsconfig.json
路径别名 - 修改
vitest.shared.ts
测试配置
- 在
-
本地调试
# 使用 yalc 进行本地依赖链接 yalc add @xyx/core
版本管理
使用 Changeset 进行版本控制:
pnpm changeset:add # 创建变更集
pnpm changeset:version # 版本升级
pnpm release # 完整发布流程
测试
运行指定模块测试:
pnpm test core
查看测试覆盖率:
pnpm run coverage
贡献
欢迎通过 Issue 和 PR 参与贡献!请先阅读贡献指南。
License
MIT © npmrun
📖 完整文档请访问 项目文档