@datrix/adapter-json 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 +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# datrix
|
|
1
|
+
# @datrix/adapter-json
|
|
2
2
|
|
|
3
3
|
A file-based JSON database adapter for Datrix framework. Perfect for development, testing, static sites, and small-scale applications.
|
|
4
4
|
|
|
@@ -18,13 +18,13 @@ A file-based JSON database adapter for Datrix framework. Perfect for development
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
# pnpm
|
|
21
|
-
pnpm add datrix
|
|
21
|
+
pnpm add @datrix/adapter-json
|
|
22
22
|
|
|
23
23
|
# yarn
|
|
24
|
-
yarn add datrix
|
|
24
|
+
yarn add @datrix/adapter-json
|
|
25
25
|
|
|
26
26
|
# npm
|
|
27
|
-
npm install datrix
|
|
27
|
+
npm install @datrix/adapter-json
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## Quick Start with Datrix
|