You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,14 +21,14 @@ To get started, first make sure you have the latest stable version of nodejs on
21
21
22
22
**1. Install json-base dependecy with npm**
23
23
24
-
You have to install jsondb with npm, it's not currently available on other package managers like yarn, etc.
24
+
You have to install json-base with npm, it's not currently available on other package managers like yarn, etc.
25
25
```bash
26
26
$ npm install @ndzhwr/json-base
27
27
```
28
28
29
-
**2. Initialize jsondb in your project**
29
+
**2. Initialize json-base in your project**
30
30
31
-
Initialize jsondb in your project. Open the root folder of your project in your terminal and initialize json-base. This will create a `database.json` file in the project.
31
+
Initialize json-base in your project. Open the root folder of your project in your terminal and initialize json-base. This will create a `database.json` file in the project.
32
32
33
33
```bash
34
34
$ npx json-base --init
@@ -55,7 +55,7 @@ Let's have a simple tutorial on how we can use this `json-base`. We're going to
55
55
4. Adding data with add() api
56
56
5. Deleting All data with delAll() api
57
57
58
-
#### 0. Setting up jsondb in a project
58
+
#### 0. Setting up json-base in a project
59
59
Before starting to perform transactions to the database, let's
* **a lightweight odm for json file inspired by prisma**
4
12
*
5
-
* Author : Regis NDIZIHIWE
13
+
*
14
+
* Use json file as your database on the backend, json-base create the database json file for you and also provides you with a lightweight ORM to perform transactions on your database.
0 commit comments