@baseplate-dev/fastify-generators 0.1.1 → 0.1.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/README.md +27 -0
- package/package.json +7 -7
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @baseplate-dev/fastify-generators
|
|
2
|
+
|
|
3
|
+
This package provides Fastify-based backend code generators for Baseplate projects.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
The fastify-generators package provides:
|
|
8
|
+
|
|
9
|
+
- Fastify server setup and configuration
|
|
10
|
+
- API route generation with full CRUD operations
|
|
11
|
+
- GraphQL schema and resolver generation
|
|
12
|
+
- Authentication middleware and guards
|
|
13
|
+
- Database integration with Prisma
|
|
14
|
+
- Service layer architecture generation
|
|
15
|
+
|
|
16
|
+
## Key Features
|
|
17
|
+
|
|
18
|
+
- RESTful API endpoint generation
|
|
19
|
+
- GraphQL API with type-safe resolvers
|
|
20
|
+
- Authentication and authorization setup
|
|
21
|
+
- Database models and migrations
|
|
22
|
+
- Service pattern implementation
|
|
23
|
+
- Error handling and validation
|
|
24
|
+
|
|
25
|
+
## Part of Baseplate Monorepo
|
|
26
|
+
|
|
27
|
+
This package is part of the Baseplate monorepo and generates the backend Node.js/Fastify code for Baseplate projects.
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baseplate-dev/fastify-generators",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Fastify generators for Baseplate",
|
|
5
|
-
"homepage": "https://www.
|
|
5
|
+
"homepage": "https://www.baseplate.dev",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/halfdomelabs/baseplate",
|
|
9
9
|
"directory": "packages/fastify-generators"
|
|
10
10
|
},
|
|
11
|
-
"license": "
|
|
11
|
+
"license": "MPL-2.0",
|
|
12
12
|
"author": "Half Dome Labs LLC",
|
|
13
13
|
"sideEffects": false,
|
|
14
14
|
"type": "module",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"indent-string": "5.0.0",
|
|
31
31
|
"inflection": "3.0.0",
|
|
32
32
|
"zod": "3.24.1",
|
|
33
|
-
"@baseplate-dev/core-generators": "0.1.
|
|
34
|
-
"@baseplate-dev/
|
|
35
|
-
"@baseplate-dev/
|
|
33
|
+
"@baseplate-dev/core-generators": "0.1.2",
|
|
34
|
+
"@baseplate-dev/sync": "0.1.2",
|
|
35
|
+
"@baseplate-dev/utils": "0.1.2"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@tailwindcss/forms": "0.5.9",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"eslint": "9.26.0",
|
|
42
42
|
"prettier": "3.5.3",
|
|
43
43
|
"typescript": "5.7.3",
|
|
44
|
-
"@baseplate-dev/tools": "0.1.
|
|
44
|
+
"@baseplate-dev/tools": "0.1.2"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": "^22.0.0"
|