@qlover/fe-corekit 1.2.10 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -48,35 +48,16 @@ const storage = new JSONStorage();
48
48
  storage.setItem('key', { data: 'value' });
49
49
  ```
50
50
 
51
- ### 导入特定子模块
52
-
53
- fe-corekit 提供了分模块导入的能力:
54
-
55
- ```typescript
56
- // 导入接口定义
57
- import { Serializer } from '@qlover/fe-corekit/interface';
58
-
59
- // 导入服务器相关模块
60
- import { Encrypt } from '@qlover/fe-corekit/server';
61
- ```
62
-
63
51
  ## 核心功能
64
52
 
65
- ### 通用模块 (common)
53
+ ### 核心模块
66
54
 
67
55
  - **存储 (storage)**: 提供 JSON 数据的存储、检索和管理功能,支持自定义存储后端和序列化器
68
56
  - **序列化 (serializer)**: 数据序列化和反序列化工具
69
57
  - **请求 (request)**: 网络请求工具,简化 API 调用
70
58
  - **日志 (logger)**: 灵活的日志记录系统
71
59
  - **执行器 (executor)**: 任务执行管理
72
-
73
- ### 接口模块 (interface)
74
-
75
- 提供了一系列标准接口定义,确保各模块之间的一致性和互操作性。
76
-
77
- ### 服务器模块 (server)
78
-
79
- - **加密 (encrypt)**: 提供数据加密和安全相关功能
60
+ - **接口定义**: 提供了一系列标准接口定义,确保各模块之间的一致性和互操作性
80
61
 
81
62
  ## 使用示例
82
63
 
@@ -143,9 +124,7 @@ fe-corekit 完全使用 TypeScript 编写,提供了完整的类型定义,可
143
124
 
144
125
  ## 快速导航
145
126
 
146
- - [通用模块文档](./common/)
147
- - [接口文档](./interface/)
148
- - [服务器模块文档](./server/)
127
+ - [核心模块文档](./common/)
149
128
 
150
129
  ## 兼容性
151
130