hexakit 0.0.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 +16 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Hexakit
|
|
2
|
+
|
|
3
|
+
> ⚠️ **Work in progress — name reserved.** The implementation is in active development.
|
|
4
|
+
|
|
5
|
+
The **framework-agnostic hexagonal architecture toolkit** for TypeScript. Scaffold a clean
|
|
6
|
+
project and keep generating **entities, use-cases, ports and adapters** as you grow — without
|
|
7
|
+
locking yourself into any framework.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm create hexa my-api # scaffold a new project
|
|
11
|
+
hexa generate entity Order # keep growing, layer-aware
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
- **Agnostic + pluggable adapters** (Fastify, Postgres, …)
|
|
15
|
+
- **Incremental generators** that respect the domain / application / infrastructure layers
|
|
16
|
+
- **TypeScript-first**, dependency-injection ready
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hexakit",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "The framework-agnostic hexagonal architecture toolkit for TypeScript — scaffold and incrementally generate entities, use-cases and adapters. (Work in progress — name reserved.)",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"hexagonal",
|
|
7
|
+
"clean-architecture",
|
|
8
|
+
"ports-and-adapters",
|
|
9
|
+
"ddd",
|
|
10
|
+
"scaffold",
|
|
11
|
+
"typescript",
|
|
12
|
+
"generator",
|
|
13
|
+
"cli",
|
|
14
|
+
"hexa"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"type": "module",
|
|
18
|
+
"files": [
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=18"
|
|
23
|
+
}
|
|
24
|
+
}
|