@shoperzz/core 0.0.1 → 0.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/CHANGELOG.md +7 -0
- package/README.md +31 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @shoperzz/core
|
|
2
2
|
|
|
3
|
+
## 0.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7135ca9: docs(monorepo): professionalize package READMEs and finalize unified release infrastructure
|
|
8
|
+
- fd02ee3: docs(monorepo): align package licenses with GPL-3.0 standards
|
|
9
|
+
|
|
3
10
|
## 0.0.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,14 +1,36 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @shoperzz/core
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
> The central nervous system of the Shoperzz headless e-commerce framework.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
`@shoperzz/core` provides the foundational architecture for building highly scalable, plugin-based e-commerce systems. It orchestrates the lifecycle of the framework, manages the plugin registry, and provides the main event-driven engine.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
- **Event Bus**: Asynchronous messaging system for inter-plugin communication.
|
|
9
|
-
- **Vendure Engine**: Integration and extension of the core commerce engine.
|
|
10
|
-
- **GraphQL Schema**: Unification of Admin and Shop API schemas.
|
|
7
|
+
## Features
|
|
11
8
|
|
|
12
|
-
|
|
9
|
+
- **Plugin Engine**: Dynamic loading and lifecycle management for Shoperzz extensions.
|
|
10
|
+
- **Event Bus**: High-performance, typed communication layer for inter-module integration.
|
|
11
|
+
- **Provider System**: Abstraction layer for data and service providers.
|
|
12
|
+
- **Middleware Support**: Intercept and modify framework behavior at key injection points.
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pnpm add @shoperzz/core
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```typescript
|
|
23
|
+
import { ShoperzzCore } from "@shoperzz/core";
|
|
24
|
+
|
|
25
|
+
const engine = new ShoperzzCore({
|
|
26
|
+
// configuration
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
engine.bootstrap().then(() => {
|
|
30
|
+
console.log("Shoperzz Engine is running.");
|
|
31
|
+
});
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
GPL-3.0-or-later © Shoperzz
|