mksrvr 2.0.1 → 2.0.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/bin/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  import fs from "fs";
4
4
  import path from "path";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mksrvr",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mksrvr": "./bin/index.js"
package/readme.md CHANGED
@@ -29,3 +29,23 @@ After scaffolding your project, navigate to the directory and start the developm
29
29
  npm run dev
30
30
  ```
31
31
 
32
+
33
+ ## Folder Structure
34
+
35
+ ```text
36
+ .
37
+ ├── node_modules/
38
+ ├── src/
39
+ │ ├── config/ # Configuration files
40
+ │ ├── controllers/ # Request handlers
41
+ │ ├── middleware/ # Custom middleware
42
+ │ ├── models/ # Database models
43
+ │ ├── routes/ # Route definitions
44
+ │ ├── services/ # Business logic
45
+ │ ├── app.js # Express application setup
46
+ ├── .env # Environment variables
47
+ ├── .gitignore # Git ignore rules
48
+ ├── package.json # Project metadata and dependencies
49
+ ├── server.js # Server entry point
50
+ ```
51
+