@nestia/core 1.3.5 → 1.3.6
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 +9 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -14,14 +14,18 @@ Nestia is a set of helper libraries for NestJS, supporting below features:
|
|
|
14
14
|
- SDK generator for clients
|
|
15
15
|
- Swagger generator evolved than ever
|
|
16
16
|
- Automatic E2E test functions generator
|
|
17
|
+
- Backend Simulator for client applications
|
|
17
18
|
- `nestia`: just CLI (command line interface) tool
|
|
18
19
|
|
|
19
20
|
> **Note**
|
|
20
21
|
>
|
|
21
22
|
> - **Only one line** required, with pure TypeScript type
|
|
22
|
-
> -
|
|
23
|
-
>
|
|
24
|
-
>
|
|
23
|
+
> - Enhance performance **30x** up
|
|
24
|
+
> - Runtime validator is **20,000x faster** than `class-validator`
|
|
25
|
+
> - JSON serialization is **200x faster** than `class-transformer`
|
|
26
|
+
> - Software Development Kit
|
|
27
|
+
> - SDK is similar with [tRPC](https://trpc.io), but much advanced
|
|
28
|
+
> - Simulator is similar with [msw](https://mswjs.io/), but fully automated
|
|
25
29
|
|
|
26
30
|

|
|
27
31
|
|
|
@@ -46,9 +50,9 @@ Check out the document in the [website](https://nestia.io/docs/):
|
|
|
46
50
|
### 🏠 Home
|
|
47
51
|
- [Introduction](https://nestia.io/docs/)
|
|
48
52
|
- [Setup](https://nestia.io/docs/setup/)
|
|
53
|
+
- [Pure TypeScript](https://nestia.io/docs/pure)
|
|
49
54
|
|
|
50
55
|
### 📖 Features
|
|
51
|
-
- [Pure TypeScript](https://nestia.io/docs/pure)
|
|
52
56
|
- Core Library
|
|
53
57
|
- [TypedRoute](https://nestia.io/docs/core/TypedRoute/)
|
|
54
58
|
- [TypedBody](https://nestia.io/docs/core/TypedBody/)
|
|
@@ -58,3 +62,4 @@ Check out the document in the [website](https://nestia.io/docs/):
|
|
|
58
62
|
- [Swagger Documents](https://nestia.io/docs/sdk/swagger/)
|
|
59
63
|
- [SDK Library](https://nestia.io/docs/sdk/sdk/)
|
|
60
64
|
- [E2E Functions](https://nestia.io/docs/sdk/e2e/)
|
|
65
|
+
- [Simulation Mode](https://nestia.io/docs/sdk/simulation/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestia/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "Super-fast validation decorators of NestJS",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"raw-body": ">= 2.0.0",
|
|
45
45
|
"reflect-metadata": ">= 0.1.12",
|
|
46
46
|
"rxjs": ">= 6.0.0",
|
|
47
|
-
"typia": "^4.0.
|
|
47
|
+
"typia": "^4.0.8"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@nestia/fetcher": ">= 1.3.3",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"reflect-metadata": ">= 0.1.12",
|
|
57
57
|
"rxjs": ">= 6.0.0",
|
|
58
58
|
"typescript": ">= 4.7.4",
|
|
59
|
-
"typia": ">= 4.0.
|
|
59
|
+
"typia": ">= 4.0.8"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
|