create-hexa 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 +12 -0
- package/bin.js +6 -0
- package/package.json +27 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# create-hexa
|
|
2
|
+
|
|
3
|
+
> ⚠️ **Work in progress — name reserved.** The implementation is in active development.
|
|
4
|
+
|
|
5
|
+
Scaffold **framework-agnostic hexagonal architecture** projects for TypeScript in seconds, then
|
|
6
|
+
keep generating entities, use-cases and adapters as you grow.
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npm create hexa my-api
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Part of the **[Hexakit](https://www.npmjs.com/package/hexakit)** toolkit.
|
package/bin.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-hexa",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Scaffold framework-agnostic hexagonal architecture projects for TypeScript. (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
|
+
"hexakit"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"type": "module",
|
|
17
|
+
"bin": {
|
|
18
|
+
"create-hexa": "./bin.js"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"bin.js",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18"
|
|
26
|
+
}
|
|
27
|
+
}
|