hono-crud 0.13.6 → 0.13.7
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 +6 -0
- package/README.md +15 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
<picture>
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/kshdotdev/hono-crud/main/logo.svg">
|
|
5
|
+
<img src="https://raw.githubusercontent.com/kshdotdev/hono-crud/main/logo-dark.svg" alt="hono-crud" width="124" height="124">
|
|
6
|
+
</picture>
|
|
7
|
+
|
|
1
8
|
# hono-crud
|
|
2
9
|
|
|
3
|
-
CRUD generator for [Hono](https://hono.dev) with Zod validation and OpenAPI generation
|
|
10
|
+
**CRUD generator for [Hono](https://hono.dev) with Zod validation and automatic OpenAPI generation.**
|
|
11
|
+
|
|
12
|
+
[](https://www.npmjs.com/package/hono-crud)
|
|
13
|
+
[](https://www.npmjs.com/package/hono-crud)
|
|
14
|
+
[](https://github.com/kshdotdev/hono-crud/actions/workflows/ci.yml)
|
|
15
|
+
[](https://opensource.org/licenses/MIT)
|
|
16
|
+
|
|
17
|
+
</div>
|
|
4
18
|
|
|
5
19
|
Define a model once and register fully-typed Create / Read / Update / Delete / List endpoints. Core also ships auth, logging, events, encryption, serialization, audit, versioning, multi-tenant, and API-versioning helpers. Persistence adapters and docs UIs live in separate `@hono-crud/*` packages.
|
|
6
20
|
|