crud-api-express 1.1.8 → 1.2.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/package.json +3 -14
- package/readme.md +14 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crud-api-express",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,24 +20,14 @@
|
|
|
20
20
|
"typescript",
|
|
21
21
|
"rest-api",
|
|
22
22
|
"nodejs",
|
|
23
|
-
"typeorm",
|
|
24
|
-
"nest",
|
|
25
|
-
"nestjs",
|
|
26
23
|
"rest",
|
|
27
24
|
"restfulapi",
|
|
28
25
|
"crud",
|
|
29
26
|
"crud-generator",
|
|
30
27
|
"httprequest",
|
|
31
|
-
"request-query",
|
|
32
|
-
"requestquery",
|
|
33
|
-
"getquery",
|
|
34
|
-
"query",
|
|
35
|
-
"query-string",
|
|
36
|
-
"querystring",
|
|
37
|
-
"query-builder",
|
|
38
|
-
"querybuilder",
|
|
39
28
|
"backend",
|
|
40
|
-
"bakend-api"
|
|
29
|
+
"bakend-api",
|
|
30
|
+
"crud-api-express"
|
|
41
31
|
],
|
|
42
32
|
"author": "",
|
|
43
33
|
"license": "ISC",
|
|
@@ -52,7 +42,6 @@
|
|
|
52
42
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
53
43
|
"@types/express": "^4.17.21",
|
|
54
44
|
"@types/mongoose": "^5.11.97",
|
|
55
|
-
"@types/react": "^18.3.3",
|
|
56
45
|
"tslib": "^2.6.2"
|
|
57
46
|
}
|
|
58
47
|
}
|
package/readme.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|

|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+

|
|
10
|
+

|
|
11
|
+
|
|
12
|
+
|
|
5
13
|
|
|
6
14
|
## Installation
|
|
7
15
|
|
|
@@ -12,12 +20,6 @@ npm install crud-api-express
|
|
|
12
20
|
```
|
|
13
21
|
|
|
14
22
|
This project provides a flexible and reusable CRUD (Create, Read, Update, Delete) API controller for MongoDB using Express.js and Mongoose.
|
|
15
|
-
|
|
16
|
-
## Support Me! ❤️
|
|
17
|
-
|
|
18
|
-
If you find this package useful, consider supporting me:
|
|
19
|
-
[Buy Me a Coffee ☕](https://buymeacoffee.com/mrider007)
|
|
20
|
-
|
|
21
23
|
---
|
|
22
24
|
|
|
23
25
|
## 📌 Table of Contents
|
|
@@ -275,3 +277,9 @@ Returns the Express Router instance configured with CRUD routes.
|
|
|
275
277
|
## 📜 License
|
|
276
278
|
|
|
277
279
|
This project is licensed under the **ISC License**.
|
|
280
|
+
|
|
281
|
+
## Support Me! ❤️
|
|
282
|
+
|
|
283
|
+
If you find this package useful, consider supporting me:
|
|
284
|
+
[Buy Me a Coffee ☕](https://buymeacoffee.com/mrider007)
|
|
285
|
+
|