arkormx 2.0.0-next.8 → 2.0.0
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 +2 -2
- package/dist/cli.mjs +946 -227
- package/dist/index.cjs +5301 -3990
- package/dist/index.d.cts +647 -110
- package/dist/index.d.mts +648 -111
- package/dist/index.mjs +5292 -3991
- package/package.json +2 -2
- package/stubs/model.js.stub +1 -1
- package/stubs/model.stub +2 -2
- package/stubs/pivot-model.stub +4 -0
package/README.md
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
[](https://github.com/arkstack-hq/arkormx/actions/workflows/deploy-docs.yml)
|
|
8
8
|
[](https://codecov.io/gh/arkstack-hq/arkormx)
|
|
9
9
|
|
|
10
|
-
Arkormˣ is a framework-agnostic ORM designed to run anywhere Node.js runs. It brings a familiar model layer and fluent query builder on top of adapter-backed execution, with Prisma compatibility
|
|
10
|
+
Arkormˣ is a framework-agnostic ORM designed to run anywhere Node.js runs. It brings a familiar model layer and fluent query builder on top of adapter-backed execution, with Prisma compatibility available as an optional 2.x compatibility path.
|
|
11
11
|
|
|
12
12
|
## Features
|
|
13
13
|
|
|
14
14
|
- Adapter-backed query execution with practical ORM ergonomics.
|
|
15
|
-
- Adapter-first runtime setup with Kysely/Postgres support and
|
|
15
|
+
- Adapter-first runtime setup with Kysely/Postgres support and optional Prisma compatibility for existing 2.x integrations.
|
|
16
16
|
- End-to-end guides for setup, querying, relationships, migrations, and CLI usage.
|
|
17
17
|
- Full TypeScript support, providing strong typing and improved developer experience.
|
|
18
18
|
- Follows best practices for security, ensuring your data is protected.
|