wok-server 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +6 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  主要功能:配置,日志,国际化,校验,缓存,MVC,mysql,mongodb ,周期任务 。
6
6
 
7
- [查看文档](./documentation/zh-cn/index.md)
7
+ [查看文档](https://gitee.com/tai/wok-server/blob/master/documentation/zh-cn/index.md)
8
8
 
9
9
  ## 优点
10
10
 
@@ -39,7 +39,7 @@ startWebServer({
39
39
 
40
40
  上面的代码启动了 web 服务,访问路径 `http://localhost:8080` 将输出文本 “Hello world !”。
41
41
 
42
- 相关的设置可以通过环境变量来修改,查看[完整文档](./documentation/zh-cn/index.md)了解细节。
42
+ 相关的设置可以通过环境变量来修改,查看[完整文档](https://gitee.com/tai/wok-server/blob/master/documentation/zh-cn/index.md)了解细节。
43
43
 
44
44
  ## 一些问题的说明
45
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wok-server",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "packageManager": "pnpm@8.9.0",
5
5
  "description": "一个基于 NodeJs 和 TypeScript 的后端框架,轻量级、克制、简洁。A lightweight, restrained, and concise backend framework based on Node.js and TypeScript.",
6
6
  "scripts": {
@@ -23,6 +23,11 @@
23
23
  ],
24
24
  "author": "peak",
25
25
  "license": "ISC",
26
+ "homepage": "https://gitee.com/tai/wok-server",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://gitee.com/tai/wok-server.git"
30
+ },
26
31
  "publishConfig": {
27
32
  "registry": "https://registry.npmjs.org"
28
33
  },