@e7w/easy-model 0.1.9 → 0.2.0
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 +6 -0
- package/package.json +24 -1
package/README.md
CHANGED
|
@@ -280,6 +280,12 @@
|
|
|
280
280
|
- 类模型 + IoC + 深度监听等高级能力;
|
|
281
281
|
- 更适合中大型业务的结构化编码体验。
|
|
282
282
|
|
|
283
|
+
### 项目链接与关键词
|
|
284
|
+
|
|
285
|
+
- **GitHub 仓库**: [`ZYF93/easy-model`](https://github.com/ZYF93/easy-model)
|
|
286
|
+
- **npm 包**: [`@e7w/easy-model`](https://www.npmjs.com/package/@e7w/easy-model)
|
|
287
|
+
- **关键词**: `react` / `state management` / `state manager` / `ioc` / `dependency injection` / `class model` / `react hooks` / `watcher` / `loader` / `typescript`
|
|
288
|
+
|
|
283
289
|
### 适用场景
|
|
284
290
|
|
|
285
291
|
easy-model 更适合以下类型的项目:
|
package/package.json
CHANGED
|
@@ -1,12 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@e7w/easy-model",
|
|
3
|
-
"
|
|
3
|
+
"keywords": [
|
|
4
|
+
"react",
|
|
5
|
+
"state management",
|
|
6
|
+
"state manager",
|
|
7
|
+
"ioc",
|
|
8
|
+
"dependency injection",
|
|
9
|
+
"model",
|
|
10
|
+
"class model",
|
|
11
|
+
"react hooks",
|
|
12
|
+
"watcher",
|
|
13
|
+
"loader",
|
|
14
|
+
"typescript"
|
|
15
|
+
],
|
|
16
|
+
"description": "一个基于类模型和依赖注入的 React 状态管理库。",
|
|
17
|
+
"version": "0.2.0",
|
|
4
18
|
"module": "./dist/index.es.js",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/ZYF93/easy-model.git"
|
|
22
|
+
},
|
|
5
23
|
"publishConfig": {
|
|
6
24
|
"access": "public",
|
|
7
25
|
"registry": "https://registry.npmjs.org/"
|
|
8
26
|
},
|
|
9
27
|
"type": "module",
|
|
28
|
+
"homepage": "https://github.com/ZYF93/easy-model#readme",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/ZYF93/easy-model/issues"
|
|
31
|
+
},
|
|
32
|
+
"author": "张一凡",
|
|
10
33
|
"types": "./dist/index.d.ts",
|
|
11
34
|
"exports": {
|
|
12
35
|
".": {
|