@aponiajs/core 0.0.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.
- package/README.md +13 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @aponiajs/core
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@aponiajs/core)
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
bun add @aponiajs/core @aponiajs/common
|
|
7
|
+
```
|
|
8
|
+
|
|
3
9
|
The initial Aponia runtime foundation:
|
|
4
10
|
|
|
5
11
|
- deterministic module graph compilation;
|
|
@@ -10,3 +16,10 @@ The initial Aponia runtime foundation:
|
|
|
10
16
|
|
|
11
17
|
Async providers, request scope, lifecycle hooks, HTTP, and Elysia integration are
|
|
12
18
|
intentionally outside this first implementation.
|
|
19
|
+
|
|
20
|
+
Most HTTP applications receive this package through
|
|
21
|
+
`@aponiajs/platform-elysia`. Install it directly when building a platform
|
|
22
|
+
adapter or using the container without HTTP.
|
|
23
|
+
|
|
24
|
+
[npm package](https://www.npmjs.com/package/@aponiajs/core) ·
|
|
25
|
+
[complete package catalog](../../docs/packages.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aponiajs/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Module graph and dependency injection runtime for Aponia.",
|
|
5
5
|
"homepage": "https://github.com/aponiajs/aponiajs#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"prepublishOnly": "bun run build"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@aponiajs/common": "0.
|
|
36
|
+
"@aponiajs/common": "0.2.0"
|
|
37
37
|
}
|
|
38
38
|
}
|