zibri 2.0.0 → 2.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.
- package/README.md +4 -0
- package/dist/index.d.mts +2606 -1717
- package/dist/index.d.ts +2606 -1717
- package/dist/index.js +3444 -1250
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3420 -1252
- package/dist/index.mjs.map +1 -1
- package/package.json +27 -26
package/README.md
CHANGED
|
@@ -29,11 +29,15 @@ Due to it's dependency injection system you can always swap things out if they a
|
|
|
29
29
|
- default jwt auth strategy with advanced features like automatic reuse detection
|
|
30
30
|
- builtin ORM with transaction and migration support
|
|
31
31
|
- controller based route definition
|
|
32
|
+
- OmitClass, PickClass, PartialClass, IntersectionClass helpers to extend from and easily build new entity or even controller classes
|
|
32
33
|
- automatic open api generation
|
|
33
34
|
- body parsers for json and form-data
|
|
34
35
|
- automatic model based validation
|
|
35
36
|
- cron job service out of the box
|
|
36
37
|
- email service out of the box, with templating, mail queue, persistence and priority handling
|
|
38
|
+
- multithreading service with builtin support for worker files or function
|
|
39
|
+
- change sets and soft delete functionality
|
|
40
|
+
-
|
|
37
41
|
|
|
38
42
|
## ✨ Ease of use
|
|
39
43
|
Zibri aims to be as easy to use as possible, with reasonable defaults and by the use of decorators and dependency injection.
|