vercerl-express-test 1.0.0 → 1.0.2

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 +6 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- ## 命名规范
2
- 例子:如创建一个auth模块;
3
- - 需要创建一个controllers/auth.controller.ts文件,控制器逻辑都写这里,包含接口的jsDoc注释
4
- - 需要创建一个services/auth.service.ts文件,业务逻辑都写这里
5
- - 需要创建一个models/auth.model.ts文件,数据库操作都写这里
6
- - 需要创建一个routes/auth.route.ts文件,路由都写这里
1
+ ## Naming Convention
2
+ Example: Creating an auth module;
3
+ - Create a controllers/auth.controller.ts file, write controller logic here, including jsDoc comments for interfaces
4
+ - Create a services/auth.service.ts file, write business logic here
5
+ - Create a models/auth.model.ts file, write database operations here
6
+ - Create a routes/auth.route.ts file, write routing here
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercerl-express-test",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "dev": "nodemon --watch src --ext ts --exec \"ts-node src/app.ts\"",
@@ -19,7 +19,7 @@
19
19
  "登录": "npm login ",
20
20
  "一键发布": "npm version patch && npm publish"
21
21
  },
22
- "keywords": [
22
+ "keywords": [
23
23
  "express",
24
24
  "web",
25
25
  "application"