moost 0.0.1-beta.2 → 0.0.1-beta.4
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 +3 -3
- package/dist/moost.cjs.prod.js +256 -107
- package/dist/moost.d.ts +150 -1
- package/dist/moost.esm-bundler.js +234 -85
- package/dist/src/binding/bind-controller.d.ts.map +1 -1
- package/dist/src/binding/bind-handler.d.ts.map +1 -1
- package/dist/src/composables/controller-meta.d.ts +6 -1
- package/dist/src/composables/controller-meta.d.ts.map +1 -1
- package/dist/src/decorators/controller.decorator.d.ts +18 -0
- package/dist/src/decorators/controller.decorator.d.ts.map +1 -1
- package/dist/src/decorators/injectable.decorator.d.ts +8 -0
- package/dist/src/decorators/injectable.decorator.d.ts.map +1 -1
- package/dist/src/decorators/resolve.decorator.d.ts +112 -0
- package/dist/src/decorators/resolve.decorator.d.ts.map +1 -1
- package/dist/src/moost.d.ts +10 -0
- package/dist/src/moost.d.ts.map +1 -1
- package/dist/src/tests/e2e.spec.d.ts +1 -1
- package/dist/src/tests/e2e.spec.d.ts.map +1 -1
- package/package.json +12 -9
- package/dist/src/composables/cache-object.d.ts +0 -3
- package/dist/src/composables/cache-object.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
**!!! This is work-in-progress library, breaking changes are expected !!!**
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
|
-
<img src="./docs/
|
|
6
|
+
<img src="./docs/moost_composite_icon.png" width="370px"><br>
|
|
7
7
|
<a href="https://github.com/prostojs/moost/blob/main/LICENSE">
|
|
8
8
|
<img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge" />
|
|
9
9
|
</a>
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
|
-
Moost is a Metadata driven Web App Framework inspired by [nestjs](https://nestjs.com/) and powered by [wooks](https://github.com/
|
|
12
|
+
Moost is a Metadata driven Web App Framework inspired by [nestjs](https://nestjs.com/) and powered by [wooks](https://github.com/wooksjs/wooks).
|
|
13
13
|
|
|
14
14
|
The main ideas behind Moost are:
|
|
15
15
|
1. Use the power of TS decorators to describe your app
|
|
16
|
-
2. Use the power of [wooks](https://github.com/
|
|
16
|
+
2. Use the power of [wooks](https://github.com/wooksjs/wooks) to process http requests
|
|
17
17
|
3. Make it easier to control dependency injections
|
|
18
18
|
4. Use as less external dependencies as possible
|
|
19
19
|
|