masquerade-orm 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +9 -1
  2. package/package.json +18 -2
package/README.md CHANGED
@@ -15,7 +15,8 @@
15
15
  </div>
16
16
 
17
17
  **MasqueradeORM** is a lightweight ORM for Node.js that works seamlessly with both TypeScript and JavaScript.
18
- Its goal is to hide SQL complexity while letting you work naturally in JS/TS syntax.
18
+
19
+ Its goal is to hide SQL complexity while letting you work naturally in JS/TS syntax.
19
20
  Instead of forcing you into ORM-specific models, metadata systems, or decorators, MasqueradeORM lets you use **your own classes** directly, exactly as you normally would.
20
21
 
21
22
  MasqueradeORM improves readability, maintainability, and workflow simplicity through a unified coding approach and extremely minimal setup.
@@ -27,6 +28,13 @@ MasqueradeORM currently supports the following SQL clients:
27
28
  - **SQLite**
28
29
  - **Postgresql**
29
30
 
31
+
32
+ # Installation
33
+
34
+ ```bash
35
+ npm install masquerade-orm
36
+ ```
37
+
30
38
  # Features
31
39
  - **Effortless setup** - no ORM-specific structures; just use your classes.
32
40
  - **Zero schema planning** - tables and schema are generated automatically.
package/package.json CHANGED
@@ -1,8 +1,24 @@
1
1
  {
2
2
  "name": "masquerade-orm",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Lightweight ORM compatible with SQLite and Postgresql in Node.js",
5
- "keywords": [],
5
+ "keywords": [
6
+ "orm",
7
+ "TypeScript",
8
+ "TS",
9
+ "JavaScript",
10
+ "JS",
11
+ "NodeJs",
12
+ "sqlite",
13
+ "postgresql",
14
+ "postgres",
15
+ "database",
16
+ "db",
17
+ "SQL",
18
+ "lightweight",
19
+ "typeorm",
20
+ "prisma"
21
+ ],
6
22
  "repository": {
7
23
  "type": "git",
8
24
  "url": "Masquerade-Orm"